Browse Source

dont output error message on stun SOFTWARE attribute

pull/53/head
Richard Fuchs 11 years ago
parent
commit
34786298a2
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      daemon/stun.c

+ 3
- 0
daemon/stun.c View File

@ -158,6 +158,9 @@ static int stun_attributes(struct stun_attrs *out, str *s, u_int16_t *unknowns)
out->priority = ntohl(*((u_int32_t *) attr.s));
break;
case 0x8022: /* software */
break; /* ignore but suppress warning message */
default:
ilog(LOG_NOTICE, "Unknown STUN attribute: 0x%04x", type);
if ((type & 0x8000))


Loading…
Cancel
Save