aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-stun.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-05-25 19:18:29 -0700
committerGuy Harris <guy@alum.mit.edu>2018-05-26 02:19:09 +0000
commit3a9a55979c2801eaa5900ef10925b0e9e23ed2e9 (patch)
treeff5b7755fca1b2da81857997bc984396313158d7 /epan/dissectors/packet-stun.c
parentda689666659cf221406e77256e65b8dd1b161081 (diff)
Fix comments.
Fix a tpyo. draft-ietf-behave-turn-ipv6 is now RFC 6156. No need to give a particular URL for one of the RFCs in question. Add RFC 6544, which discusses the use of RFC 4571-style framing for ICE. Change-Id: Ie2c4f7747f0d08c92dc95d06a54175b2f8b9df76 Reviewed-on: https://code.wireshark.org/review/27817 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-stun.c')
-rw-r--r--epan/dissectors/packet-stun.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/epan/dissectors/packet-stun.c b/epan/dissectors/packet-stun.c
index 4ce82e4c6c..5b0beba7e0 100644
--- a/epan/dissectors/packet-stun.c
+++ b/epan/dissectors/packet-stun.c
@@ -17,9 +17,10 @@
* - RFC 5245, formerly draft-ietf-mmusic-ice-19
* - RFC 5780, formerly draft-ietf-behave-nat-behavior-discovery-08
* - RFC 5766, formerly draft-ietf-behave-turn-16
- * - draft-ietf-behave-turn-ipv6-11
- * - RFC 3489, http://www.faqs.org/rfcs/rfc3489.html (Addition of deprecated attributes for diagnostics purpose)
+ * - RFC 6156, formerly draft-ietf-behave-turn-ipv6-11
+ * - RFC 3489 (Addition of deprecated attributes for diagnostics purpose)
* - RFC 6062
+ * - RFC 6544
*
* From MS (Lync)
* MS-TURN: Traversal Using Relay NAT (TURN) Extensions http://msdn.microsoft.com/en-us/library/cc431507.aspx
@@ -461,7 +462,7 @@ get_stun_message_len(packet_info *pinfo _U_, tvbuff_t *tvb,
if ((captured_length >= TCP_FRAME_COOKIE_LEN) &&
(tvb_get_ntohl(tvb, 6) == 0x2112a442)) {
/* The magic cookie is off by two, this appears
- to be RFC4751 framing */
+ to be RFC4571 framing */
return (tvb_get_ntohs(tvb, 0) + 2);
}