diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-01-03 08:00:51 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-01-03 08:00:51 +0000 |
commit | 4750bf47a78e50351bb54c5a4e1d774d9805beae (patch) | |
tree | b68880c9d62458fb24f00a2faae984dcd94471b3 /wiretap/netxray.c | |
parent | ae6cb2b4e3dd70818ffbd352453106749831130f (diff) | |
download | wireshark-4750bf47a78e50351bb54c5a4e1d774d9805beae.tar.gz wireshark-4750bf47a78e50351bb54c5a4e1d774d9805beae.tar.bz2 wireshark-4750bf47a78e50351bb54c5a4e1d774d9805beae.zip |
Add some more comments.
svn path=/trunk/; revision=6843
Diffstat (limited to 'wiretap/netxray.c')
-rw-r--r-- | wiretap/netxray.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/wiretap/netxray.c b/wiretap/netxray.c index 1287931251..f599c08427 100644 --- a/wiretap/netxray.c +++ b/wiretap/netxray.c @@ -1,6 +1,6 @@ /* netxray.c * - * $Id: netxray.c,v 1.66 2003/01/03 07:54:01 guy Exp $ + * $Id: netxray.c,v 1.67 2003/01/03 08:00:51 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -547,7 +547,8 @@ netxray_set_pseudo_header(wtap *wth, union wtap_pseudo_header *pseudo_header, union netxrayrec_hdr *hdr) { /* - * If this is 802.11, or ISDN, set the pseudo-header. + * If this is 802.11, ISDN, or ATM, set the pseudo-header. + * XXX - what about X.25? */ if (wth->capture.netxray->version_major == 2) { switch (wth->file_encap) { @@ -575,6 +576,8 @@ netxray_set_pseudo_header(wtap *wth, union wtap_pseudo_header *pseudo_header, * the bottom 5 bits are the channel number, which * is enough for European PRI. (XXX - maybe the * whole byte is the channel number?) + * + * XXX - is that direction flag right? */ pseudo_header->isdn.uton = (hdr->hdr_2_x.xxx[10] & 0x80); |