aboutsummaryrefslogtreecommitdiffstats
path: root/packet-x25.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-04-07 08:33:12 +0000
committerGuy Harris <guy@alum.mit.edu>2001-04-07 08:33:12 +0000
commitd57831fd295c1092811bea4c2f6954a94e23609d (patch)
tree172d627b8a037cf2a512689f0df90197958430d4 /packet-x25.c
parent1bfd09545ea271421830e2540d2695f0457eef2b (diff)
Mention RFC 1356 in the comment about handling NLPIDs other than the
0xCC one for IP. svn path=/trunk/; revision=3268
Diffstat (limited to 'packet-x25.c')
-rw-r--r--packet-x25.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/packet-x25.c b/packet-x25.c
index f8b210f83e..28faf147b2 100644
--- a/packet-x25.c
+++ b/packet-x25.c
@@ -2,7 +2,7 @@
* Routines for x25 packet disassembly
* Olivier Abad <oabad@cybercable.fr>
*
- * $Id: packet-x25.c,v 1.47 2001/03/30 10:51:50 guy Exp $
+ * $Id: packet-x25.c,v 1.48 2001/04/07 08:33:12 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -1474,8 +1474,11 @@ dissect_x25(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
spi = tvb_get_guint8(tvb, localoffset);
switch (spi) {
- /* XXX - handle other NLPIDs, e.g. PPP? */
-
+ /*
+ * XXX - handle other NLPIDs, e.g. PPP?
+ * See RFC 1356 for information on at least some other
+ * ways of running other protocols atop X.25.
+ */
case NLPID_IP:
x25_hash_add_proto_start(vc, pinfo->fd->abs_secs,
pinfo->fd->abs_usecs, ip_handle);