aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-http.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2018-11-29 10:48:46 +0100
committerAnders Broman <a.broman58@gmail.com>2018-11-29 12:16:20 +0000
commitd68b7bc505728ad27d109ebf9bacbcbb9ef75613 (patch)
tree20dcdbc38efd042415a4800fdeeaa4544563523e /epan/dissectors/packet-http.h
parent0da9763d110da29491ac1e9206f5dc89906e357c (diff)
Add sip_call_id filter to RTP stream.
Change-Id: Ia525fa74457eef03a3a8bc85905036c19693cfbb Reviewed-on: https://code.wireshark.org/review/30830 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-http.h')
-rw-r--r--epan/dissectors/packet-http.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/epan/dissectors/packet-http.h b/epan/dissectors/packet-http.h
index ae42aa3f2b..ddcfaf899c 100644
--- a/epan/dissectors/packet-http.h
+++ b/epan/dissectors/packet-http.h
@@ -78,13 +78,15 @@ typedef enum _http_type {
HTTP_REQUEST,
HTTP_RESPONSE,
HTTP_NOTIFICATION,
- HTTP_OTHERS
+ HTTP_OTHERS,
+ SIP_DATA /* If the content is from the SIP dissector*/
} http_type_t;
/** Passed to dissectors called by the HTTP dissector. */
typedef struct _http_message_info_t {
- http_type_t type; /* Message type; may be HTTP_OTHERS if not called by HTTP */
- const char *media_str; /* Content-Type parameters */
+ http_type_t type; /**< Message type; may be HTTP_OTHERS if not called by HTTP */
+ const char *media_str; /**< Content-Type parameters */
+ void *data; /**< The http_type is used to indicate the data transported */
} http_message_info_t;
#endif /* __PACKET_HTTP_H__ */