aboutsummaryrefslogtreecommitdiffstats
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-11-10 06:50:37 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-11-10 06:50:37 +0000
commit756e08a9f0877974c11dd9e89b5961767d4dd97c (patch)
tree7a4c3b5a8262e5ec32132dd69225fd74d1a5fd16 /epan/strutil.h
parent4e0c74654466509cbb5c434397e798f4c5e5e234 (diff)
Tvbuffify the SAP and SDP dissectors.
Add "tvb_find_line_end_unquoted()" for the benefit of the SDP dissector; get rid of "find_line_end_unquoted()" as nobody uses it any more. Add "tvb_pbrk_guint8()" for the benefit of "tvb_find_line_end_unquoted()"; it searches for any of a number of characters, unlike "tvb_find_guint8()" which searches for only one. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2595 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/epan/strutil.h b/epan/strutil.h
index 55f382d297..10ff947710 100644
--- a/epan/strutil.h
+++ b/epan/strutil.h
@@ -1,7 +1,7 @@
/* strutil.h
* String utility definitions
*
- * $Id: strutil.h,v 1.3 2000/11/09 02:42:33 guy Exp $
+ * $Id: strutil.h,v 1.4 2000/11/10 06:50:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -38,8 +38,6 @@
const u_char *find_line_end(const u_char *data, const u_char *dataend,
const u_char **eol);
-const u_char *find_line_end_unquoted(const u_char *data, const u_char *dataend,
- const u_char **eol);
int get_token_len(const u_char *linep, const u_char *lineend,
const u_char **next_token);
gchar* format_text(const u_char *line, int len);