/* * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 2001 Gerald Combs * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef DFILTER_INT_H #define DFILTER_INT_H #include "dfilter.h" #include "syntax-tree.h" #include #include /* Passed back to user */ struct epan_dfilter { GPtrArray *insns; GPtrArray *consts; guint num_registers; guint max_registers; GList **registers; gboolean *attempted_load; int *interesting_fields; int num_interesting_fields; GPtrArray *deprecated; }; typedef struct { /* Syntax Tree stuff */ stnode_t *st_root; gboolean syntax_error; gchar *error_message; GPtrArray *insns; GPtrArray *consts; GHashTable *loaded_fields; GHashTable *interesting_fields; int next_insn_id; int next_const_id; int next_register; int first_constant; /* first register used as a constant */ } dfwork_t; /* * State kept by the scanner. */ typedef struct { dfwork_t *dfw; GString* quoted_string; } df_scanner_state_t; /* Constructor/Destructor prototypes for Lemon Parser */ void *DfilterAlloc(void* (*)(gsize)); void DfilterFree(void*, void (*)(void *)); void Dfilter(void*, int, stnode_t*, dfwork_t*); /* Scanner's lval */ extern stnode_t *df_lval; /* Return value for error in scanner. */ #define SCAN_FAILED -1 /* not 0, as that means end-of-input */ /* Set dfw->error_message */ void dfilter_fail(dfwork_t *dfw, const char *format, ...) G_GNUC_PRINTF(2, 3); void DfilterTrace(FILE *TraceFILE, char *zTracePrompt); #endif