aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-29 00:25:05 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-29 00:25:05 +0000
commit31158d0d0ecd4fe605bc1675424c06c024acef0c (patch)
treebdab89baafbaad0af305c789bd9f351a7cf70ab9
parent6472876ab34d2aa016e0b2afa0348d45ce551c86 (diff)
Move the request/response header helper routines to the epan directory.
svn path=/trunk/; revision=12129
-rw-r--r--Makefile.common1
-rw-r--r--epan/Makefile.common3
-rw-r--r--epan/dissectors/packet-http.c2
-rw-r--r--epan/dissectors/packet-rtsp.c2
-rw-r--r--epan/req_resp_hdrs.c (renamed from req_resp_hdrs.c)2
-rw-r--r--epan/req_resp_hdrs.h (renamed from req_resp_hdrs.h)0
6 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.common b/Makefile.common
index cd18cf1d34..0d5c9f7912 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -50,7 +50,6 @@ DISSECTOR_SUPPORT_INCLUDES = \
prefs-int.h \
ptvcursor.h \
reassemble.h \
- req_resp_hdrs.h \
rpc_defrag.h \
rtp_pt.h \
sctpppids.h \
diff --git a/epan/Makefile.common b/epan/Makefile.common
index fcc409c07b..4f857b129e 100644
--- a/epan/Makefile.common
+++ b/epan/Makefile.common
@@ -52,6 +52,7 @@ LIBETHEREAL_SRC = \
prefs.c \
proto.c \
range.c \
+ req_resp_hdrs.c \
sha1.c \
sna-utils.c \
strutil.c \
@@ -101,6 +102,7 @@ LIBETHEREAL_INCLUDES = \
proto.h \
range.h \
report_err.h \
+ req_resp_hdrs.h \
sha1.h \
slab.h \
sna-utils.h \
@@ -122,7 +124,6 @@ DISSECTOR_SUPPORT_SRC = \
../ipproto.c \
../ptvcursor.c \
../reassemble.c \
- ../req_resp_hdrs.c \
../t35.c \
../xmlstub.c
diff --git a/epan/dissectors/packet-http.c b/epan/dissectors/packet-http.c
index 3233ae07cc..18a044ac9b 100644
--- a/epan/dissectors/packet-http.c
+++ b/epan/dissectors/packet-http.c
@@ -42,7 +42,7 @@
#include <epan/strutil.h>
#include <epan/base64.h>
-#include "req_resp_hdrs.h"
+#include <epan/req_resp_hdrs.h>
#include "packet-http.h"
#include <epan/prefs.h>
diff --git a/epan/dissectors/packet-rtsp.c b/epan/dissectors/packet-rtsp.c
index 108d10e90a..e0bbb22768 100644
--- a/epan/dissectors/packet-rtsp.c
+++ b/epan/dissectors/packet-rtsp.c
@@ -39,7 +39,7 @@
#include <glib.h>
#include <epan/packet.h>
-#include "req_resp_hdrs.h"
+#include <epan/req_resp_hdrs.h>
#include "packet-rtp.h"
#include "packet-rtcp.h"
#include <epan/conversation.h>
diff --git a/req_resp_hdrs.c b/epan/req_resp_hdrs.c
index fad48804d4..1e6b99188e 100644
--- a/req_resp_hdrs.c
+++ b/epan/req_resp_hdrs.c
@@ -32,7 +32,7 @@
#include <epan/strutil.h>
#include <string.h>
-#include "req_resp_hdrs.h"
+#include <epan/req_resp_hdrs.h>
/*
* Optionally do reassembly of the request/response line, headers, and body.
diff --git a/req_resp_hdrs.h b/epan/req_resp_hdrs.h
index a4783a5440..a4783a5440 100644
--- a/req_resp_hdrs.h
+++ b/epan/req_resp_hdrs.h