aboutsummaryrefslogtreecommitdiffstats
path: root/packet-http.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-02 23:09:11 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-02 23:09:11 +0000
commit2bc584500c412f314d909e7f45343cca590eb7d4 (patch)
treeb38556181489421510029e6465d46e7b8a393b59 /packet-http.h
parentfac8d77d0a001c7f5628ab142819d4b5c7539f10 (diff)
The code in an HTTP reply is a response code, not a response method.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8346 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-http.h')
-rw-r--r--packet-http.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/packet-http.h b/packet-http.h
index 82918d3fca..5144e4f74b 100644
--- a/packet-http.h
+++ b/packet-http.h
@@ -1,6 +1,6 @@
/* packet-http.h
*
- * $Id: packet-http.h,v 1.8 2003/09/02 22:47:57 guy Exp $
+ * $Id: packet-http.h,v 1.9 2003/09/02 23:09:10 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -23,13 +23,15 @@
#ifndef __PACKET_HTTP_H__
#define __PACKET_HTTP_H__
+
#include <epan/packet.h>
void http_dissector_add(guint32 port, dissector_handle_t handle);
typedef struct _http_info_value_t
{
- guint response_method;
gchar *request_method;
-} http_info_value_t ;
+ guint response_code;
+} http_info_value_t;
+
#endif