aboutsummaryrefslogtreecommitdiffstats
path: root/dfilter-int.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-10-11 03:03:12 +0000
committerGuy Harris <guy@alum.mit.edu>1999-10-11 03:03:12 +0000
commit29b9c8a2850ae3be73d1fce38a1e96591ba165fb (patch)
tree2f4a35a2ca11bf7a6c31bd3079ab48e12ed9b957 /dfilter-int.h
parent5779d0b754957b7b0b2921a0beef14eba7ac3250 (diff)
Have "get_host_ipaddr()" return a Boolean indicating whether it
succeeded or failed, and, if it succeeded, have it fill in the IP address if found through a pointer passed as the second argument. Have it first try interpreting its first argument as a dotted-quad IP address, with "inet_aton()", and, if that fails, have it try to interpret it as a host name with "gethostbyname()"; don't bother with "gethostbyaddr()", as we should be allowed to filter on IP addresses even if there's no host name associated with them (there's no guarantee that "gethostbyaddr()" will succeed if handed an IP address with no corresponding name - and it looks as if FreeBSD 3.2, at least, may not succeed in that case). Add a "dfilter_fail()" routine that takes "printf()"-like arguments and uses them to set an error message for the parse; doing so means that even if the filter expression is syntactically valid, we treat it as being invalid. (Is there a better way to force a parse to fail from arbitrary places in routines called by the parser?) Use that routine in the lexical analyzer. If that error message was set, use it as is as the failure message, rather than adding "Unable to parse filter string XXX" to it. Have the code to handle IP addresses and host names in display filters check whether "get_host_ipaddr()" succeeded or failed and, if it failed, arrange that the parse fail with an error message indicating the source of the problem. svn path=/trunk/; revision=802
Diffstat (limited to 'dfilter-int.h')
-rw-r--r--dfilter-int.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/dfilter-int.h b/dfilter-int.h
index ef2248b2c1..213d9ccba6 100644
--- a/dfilter-int.h
+++ b/dfilter-int.h
@@ -2,7 +2,7 @@
* Definitions for routines common to multiple modules in the display
* filter code, but not used outside that code.
*
- * $Id: dfilter-int.h,v 1.6 1999/10/10 18:15:34 guy Exp $
+ * $Id: dfilter-int.h,v 1.7 1999/10/11 03:03:11 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -40,8 +40,17 @@ extern GSList *gnode_slist;
int dfilter_lex(void);
void dfilter_error(char *s);
-/* Report an error during compilation of a filter */
-void dfilter_error(char *s);
+/* Report an error during compilation of a filter; this is called by code
+ * other than parser code, so all it does is record that an error occurred,
+ * so that even if the filter is nominally syntactically valid, we still
+ * fail.
+ */
+#if __GNUC__ == 2
+void dfilter_fail(char *fmt, ...)
+ __attribute__((format (printf, 1, 2)));
+#else
+void dfilter_fail(char *fmt, ...);
+#endif
/* functions that dfilter-grammar.y needs during parsing*/
gboolean check_relation_numeric(gint operand, GArray *a, GArray *b);