~ubuntu-branches/ubuntu/gutsy/wireshark/gutsy-security

« back to all changes in this revision

Viewing changes to epan/dissectors/packet-msrp.c

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2007-04-01 08:58:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070401085840-or3qhrpv8alt1bwg
Tags: 0.99.5-1
* New upstream release.
* debian/patches/09_idl2wrs.dpatch: updated to patch idl2wrs.sh.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Routines for Message Session Relay Protocol(MSRP) dissection
3
3
 * Copyright 2005, Anders Broman <anders.broman[at]ericsson.com>
4
4
 *
5
 
 * $Id: packet-msrp.c 19265 2006-09-20 12:13:18Z martinm $
 
5
 * $Id: packet-msrp.c 20062 2006-12-07 20:34:08Z etxrab $
6
6
 *
7
7
 * Wireshark - Network traffic analyzer
8
8
 * By Gerald Combs <gerald@wireshark.org>
136
136
#define MSRP_AUTHORIZATION                                              14
137
137
#define MSRP_AUTHENTICATION_INFO                                15
138
138
 
139
 
dissector_handle_t msrp_handle;
 
139
static dissector_handle_t msrp_handle;
140
140
gboolean global_msrp_raw_text = TRUE;
141
141
 
142
142
/* MSRP content type and internet media type used by other dissectors
236
236
                /* First time, get info from conversation */
237
237
                p_conv = find_conversation(pinfo->fd->num, &pinfo->net_dst, &pinfo->net_src,
238
238
                                           PT_TCP,
239
 
                                           pinfo->destport, pinfo->srcport, 0);//NO_ADDR_B | NO_PORT_B);
 
239
                                           pinfo->destport, pinfo->srcport, 0);
240
240
 
241
241
                if (p_conv)
242
242
                {