aboutsummaryrefslogtreecommitdiffstats
path: root/packet-http.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-02 23:09:11 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-02 23:09:11 +0000
commitfdfd8b58af01870f3b822a6413807c7b1456961a (patch)
treeb38556181489421510029e6465d46e7b8a393b59 /packet-http.h
parent75ae0e30c7ff9e539a80562a431e1cd2719e78a1 (diff)
The code in an HTTP reply is a response code, not a response method.
svn path=/trunk/; revision=8346
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