summaryrefslogtreecommitdiff
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-11-10 06:50:37 +0000
committerGuy Harris <guy@alum.mit.edu>2000-11-10 06:50:37 +0000
commit07eb30403dae13dde668ff3b06d7d6c9bf677de9 (patch)
tree7a4c3b5a8262e5ec32132dd69225fd74d1a5fd16 /epan/strutil.h
parent9eb37f04e72d4d5a6f50e04e808757a648314fac (diff)
downloadwireshark-07eb30403dae13dde668ff3b06d7d6c9bf677de9.tar.gz
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. svn path=/trunk/; revision=2595
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);