diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-10-21 05:52:28 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-10-21 05:52:28 +0000 |
commit | 563f86ee5eab280006171dbd7fdb411715594355 (patch) | |
tree | 616003167e713e2f88482dfdd46c1869d68eb308 /packet-smtp.c | |
parent | 183e9cbf25933dcd9abc8db485f5308459f192b2 (diff) | |
download | wireshark-563f86ee5eab280006171dbd7fdb411715594355.tar.gz wireshark-563f86ee5eab280006171dbd7fdb411715594355.tar.bz2 wireshark-563f86ee5eab280006171dbd7fdb411715594355.zip |
Support for conversations with "wildcard" destination addresses, from
Jeff Foster.
svn path=/trunk/; revision=2523
Diffstat (limited to 'packet-smtp.c')
-rw-r--r-- | packet-smtp.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packet-smtp.c b/packet-smtp.c index 7e2c0152e6..7a6092642c 100644 --- a/packet-smtp.c +++ b/packet-smtp.c @@ -1,7 +1,7 @@ /* packet-smtp.c * Routines for SMTP packet disassembly * - * $Id: packet-smtp.c,v 1.6 2000/09/11 16:16:07 gram Exp $ + * $Id: packet-smtp.c,v 1.7 2000/10/21 05:52:23 guy Exp $ * * Copyright (c) 2000 by Richard Sharpe <rsharpe@ns.aus.com> * @@ -231,10 +231,11 @@ dissect_smtp(const u_char *pd, int offset, frame_data *fd, if (!frame_data) { conversation = find_conversation(&pinfo->src, &pinfo->dst, pi.ptype, - pinfo->srcport, pinfo->destport); + pinfo->srcport, pinfo->destport, 0); if (conversation == NULL) { /* No conversation, create one */ conversation = conversation_new(&pinfo->src, &pinfo->dst, pinfo->ptype, - pinfo->srcport, pinfo->destport, NULL); + pinfo->srcport, pinfo->destport, NULL, + 0); } |