aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ncp2222.inc
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-10-21 05:52:28 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-10-21 05:52:28 +0000
commit4fd23a5c542a39e3e55781c0fa42ae9258f40533 (patch)
tree616003167e713e2f88482dfdd46c1869d68eb308 /packet-ncp2222.inc
parente404f03da9dd268ee7f9b961255059807ebfccd5 (diff)
Support for conversations with "wildcard" destination addresses, from
Jeff Foster. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2523 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ncp2222.inc')
-rw-r--r--packet-ncp2222.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-ncp2222.inc b/packet-ncp2222.inc
index 7300dcc2a1..96a95bf62e 100644
--- a/packet-ncp2222.inc
+++ b/packet-ncp2222.inc
@@ -7,7 +7,7 @@
*
* Gilbert Ramirez <gram@xiexie.org>
*
- * $Id: packet-ncp2222.inc,v 1.1 2000/09/22 16:37:50 gram Exp $
+ * $Id: packet-ncp2222.inc,v 1.2 2000/10/21 05:52:21 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -135,11 +135,11 @@ dissect_ncp_request(tvbuff_t *tvb, packet_info *pinfo,
as being part of a single conversation so that we can
let the user select that conversation to be displayed.) */
conversation = find_conversation(&pi.src, &pi.dst,
- PT_NCP, nw_connection, nw_connection);
+ PT_NCP, nw_connection, nw_connection, 0);
if (conversation == NULL) {
/* It's not part of any conversation - create a new one. */
conversation = conversation_new(&pi.src, &pi.dst,
- PT_NCP, nw_connection, nw_connection, NULL);
+ PT_NCP, nw_connection, nw_connection, NULL, 0);
}
ncp_hash_insert(conversation, sequence, 0x2222, ncp_rec);
}
@@ -191,7 +191,7 @@ dissect_ncp_reply(tvbuff_t *tvb, packet_info *pinfo,
/* Find the conversation whence the request would have come. */
conversation = find_conversation(&pi.src, &pi.dst,
- PT_NCP, nw_connection, nw_connection);
+ PT_NCP, nw_connection, nw_connection, 0);
if (conversation != NULL) {
/* find the record telling us the request made that caused
this reply */