diff options
author | Youness Alaoui <kakaroto@kakaroto.(none)> | 2008-11-03 17:00:06 -0500 |
---|---|---|
committer | Youness Alaoui <kakaroto@kakaroto.(none)> | 2008-11-03 17:00:06 -0500 |
commit | b4246f0481e307dec2d0afa303bded64a600ab56 (patch) | |
tree | 1376553a35fc14264cd5254c56fa37f1e5fcdc7b /stun/stunmessage.c | |
parent | 241a240f5926f184ea52ef10c8e84c9addf87f67 (diff) | |
download | libnice-b4246f0481e307dec2d0afa303bded64a600ab56.tar.gz |
Replace all references to 3489BIS into RFC 5389 as it has just been released
Diffstat (limited to 'stun/stunmessage.c')
-rw-r--r-- | stun/stunmessage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stun/stunmessage.c b/stun/stunmessage.c index 0b7947c..f2c991e 100644 --- a/stun/stunmessage.c +++ b/stun/stunmessage.c @@ -603,7 +603,7 @@ stun_method_t stun_message_get_method (const StunMessage *msg) { uint16_t t = stun_getw (msg->buffer); /* HACK HACK HACK - A google/msn data indication is 0x0115 which is contrary to the rfc3489bis + A google/msn data indication is 0x0115 which is contrary to the RFC 5389 which states that 8th and 12th bits are for the class and that 0x01 is for indications... So 0x0115 is reported as a "connect error response", while it should be @@ -624,7 +624,7 @@ stun_class_t stun_message_get_class (const StunMessage *msg) { uint16_t t = stun_getw (msg->buffer); /* HACK HACK HACK - A google/msn data indication is 0x0115 which is contrary to the rfc3489bis + A google/msn data indication is 0x0115 which is contrary to the RFC 5389 which states that 8th and 12th bits are for the class and that 0x01 is for indications... So 0x0115 is reported as a "connect error response", while it should be |