Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-dev: Re: [Wireshark-dev] Subdissectors for HTTP connect traffic

From: Stephen Fisher <stephentfisher@xxxxxxxxx>
Date: Mon, 14 Aug 2006 15:58:39 -0700
On Mon, Aug 14, 2006 at 11:46:23PM +0200, Joerg Mayer wrote:
> 
> Committed revision 18901.

Thanks.  Could you apply the attached patch also to finish it off - I 
failed to include it in the original e-mail.  Sorry about that.



Steve

Index: epan/dissectors/packet-http.c
===================================================================
--- epan/dissectors/packet-http.c	(revision 18903)
+++ epan/dissectors/packet-http.c	(working copy)
@@ -1822,7 +1822,7 @@
 			break;
 			
 		case HDR_HOST: 
-			stat_info->http_host = ep_strndup(value, value_len);
+			stat_info->http_host = se_strndup(value, value_len);
 			break;
 			
 		}
Index: epan/dissectors/packet-http.h
===================================================================
--- epan/dissectors/packet-http.h	(revision 18903)
+++ epan/dissectors/packet-http.h	(working copy)
@@ -30,7 +30,6 @@
 
 typedef struct _http_info_value_t
 {
-	guint32  framenum;
 	gchar	*request_method;	
 	guint	 response_code;
 	gchar   *http_host;