diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-11-06 22:59:23 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-11-06 22:59:23 +0000 |
commit | eab13a03f3a5b33054342995a44ae4367a0dc6ef (patch) | |
tree | de398536766e0ef0dc4b3c418dede2fdf48ff98f /doc | |
parent | 8ee4a65f7690f5563275f4b1718971af2e5faca8 (diff) | |
download | wireshark-eab13a03f3a5b33054342995a44ae4367a0dc6ef.tar.gz wireshark-eab13a03f3a5b33054342995a44ae4367a0dc6ef.tar.bz2 wireshark-eab13a03f3a5b33054342995a44ae4367a0dc6ef.zip |
From Andreas Trauer:
Replace the handling of PPP packets over GTPv1 and also
establish the handling of PPP packet over GTPv0. Additionally
IPv6 packets are handled in GTPv0 and GTPv1.
Explanation:
- old solution: examining the known PPP protocols is a tough
task, because there might be more in the future -> the list
must be extended more and more (the octet 0x00 has already
been added for PPP network layer protocols, but for protocol
field compression a lot of protocols must be inserted for
IPv4(0x21), IPv6(0x57), maybe IPX (0x2b) or AppleTalk (0x29),
...)
- new solution: It is easier the other way: the most significant
nibble of the first octet must be 4 for IPv4 and 6 for IPv6.
All other values are assumed to be PPP packets, including
packets beginning with values 0x40-0x44 (header too short for
IPv4 packet) and value 0x4f (PPP protocol type (IPv6 header
compression protocol) taking precedence over IPv4 packets with
header length of 60 octets).
svn path=/trunk/; revision=6568
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ethereal.pod.template | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template index 30bc1988be..f56546eb72 100644 --- a/doc/ethereal.pod.template +++ b/doc/ethereal.pod.template @@ -1570,6 +1570,7 @@ B<http://www.ethereal.com>. Peter Fales <psfales [AT] lucent.com> Fritz Budiyanto <fritzb88 [AT] yahoo.com> Jean-Baptiste Marchand <Jean-Baptiste.Marchand [AT] hsc.fr> + Andreas Trauer <andreas.trauer [AT] siemens.com> Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his permission to use his version of snprintf.c. |