aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-http.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-02-28 22:27:24 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-02-28 22:27:24 +0000
commitd018dcf6635c40c60894524343411d3d42ac62e8 (patch)
tree91f5df4fd0b745796e61e52e9f9d6bb2b06af826 /epan/dissectors/packet-http.h
parentaae42374bc709c6ea3f9275c49ab272c2f50fb9e (diff)
few changes to http
- stat_infos are mantained in a GPtrArray to avoid leaking and overwriting them - added http_host and request_uri to http_info_value_t svn path=/trunk/; revision=13555
Diffstat (limited to 'epan/dissectors/packet-http.h')
-rw-r--r--epan/dissectors/packet-http.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-http.h b/epan/dissectors/packet-http.h
index e79ffa4e43..1fd47b9c1a 100644
--- a/epan/dissectors/packet-http.h
+++ b/epan/dissectors/packet-http.h
@@ -30,8 +30,11 @@ void http_dissector_add(guint32 port, dissector_handle_t handle);
typedef struct _http_info_value_t
{
+ guint32 framenum;
gchar *request_method;
guint response_code;
+ gchar *http_host;
+ gchar *request_uri;
} http_info_value_t;
#endif