aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-07 08:33:12 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-07 08:33:12 +0000
commite4c0eed608d54c9e39ee523dd6e3489643567f30 (patch)
tree172d627b8a037cf2a512689f0df90197958430d4
parentcc10bd95d59c69fdd23fd1fc92aa5898ae03219e (diff)
Mention RFC 1356 in the comment about handling NLPIDs other than the
0xCC one for IP. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3268 f5534014-38df-0310-8fa8-9805f1628bb7
-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);