Avoid adding -pie on older cmake versions
[metze/wireshark/wip.git] / dftest.c
index eba59b0ea45eb2d59aaca54f4f712322a8ca184e..c721afcdd0104fb905a50cae8e69ece4dfd07674 100644 (file)
--- a/dftest.c
+++ b/dftest.c
@@ -1,8 +1,6 @@
 /* dftest.c
  * Shows display filter byte-code, for debugging dfilter routines.
  *
- * $Id$
- *
  * Wireshark - Network traffic analyzer
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
  * 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
+#include <config.h>
 
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
 #include <errno.h>
 
-#ifdef NEED_STRERROR_H
-#include "strerror.h"
-#endif
-
 #include <glib.h>
-#include <epan/epan.h>
 
+#include <epan/epan.h>
 #include <epan/timestamp.h>
-#include <epan/plugins.h>
-#include <epan/filesystem.h>
-#include <wsutil/privileges.h>
 #include <epan/prefs.h>
-#include "util.h"
-#include "epan/dfilter/dfilter.h"
-#include "register.h"
+#include <epan/dfilter/dfilter.h>
+
+#ifdef HAVE_PLUGINS
+#include <wsutil/plugins.h>
+#endif
+#include <wsutil/filesystem.h>
+#include <wsutil/privileges.h>
+#include <wsutil/report_err.h>
 
-packet_info    pi;
+#include "ui/util.h"
+#include "register.h"
 
 static void failure_message(const char *msg_format, va_list ap);
 static void open_failure_message(const char *filename, int err,
-    gboolean for_writing);
+       gboolean for_writing);
 static void read_failure_message(const char *filename, int err);
 static void write_failure_message(const char *filename, int err);
 
@@ -64,13 +59,13 @@ main(int argc, char **argv)
        char            *gpf_path, *pf_path;
        int             gpf_open_errno, gpf_read_errno;
        int             pf_open_errno, pf_read_errno;
-       e_prefs         *prefs;
        dfilter_t       *df;
+       gchar           *err_msg;
 
        /*
         * Get credential information for later use.
         */
-       get_credential_info();
+       init_process_policies();
 
        /*
         * Attempt to get the pathname of the executable file.
@@ -78,51 +73,58 @@ main(int argc, char **argv)
        init_progfile_dir_error = init_progfile_dir(argv[0], (void *)main);
        if (init_progfile_dir_error != NULL) {
                fprintf(stderr, "dftest: Can't get pathname of dftest program: %s.\n",
-                   init_progfile_dir_error);
+                       init_progfile_dir_error);
        }
 
+       init_report_err(failure_message, open_failure_message,
+                       read_failure_message, write_failure_message);
+
        timestamp_set_type(TS_RELATIVE);
+       timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
+
+#ifdef HAVE_PLUGINS
+       /* Register all the plugin types we have. */
+       epan_register_plugin_types(); /* Types known to libwireshark */
+
+       /* Scan for plugins.  This does *not* call their registration routines;
+          that's done later. */
+       scan_plugins();
+#endif
 
        /* Register all dissectors; we must do this before checking for the
           "-g" flag, as the "-g" flag dumps a list of fields registered
           by the dissectors, and we must do it before we read the preferences,
           in case any dissectors register preferences. */
-       epan_init(register_all_protocols,
-                 register_all_protocol_handoffs, NULL, NULL,
-                 failure_message, open_failure_message, read_failure_message,
-                 write_failure_message);
-
-       /* now register the preferences for any non-dissector modules.
-       we must do that before we read the preferences as well. */
-       prefs_register_modules();
+       epan_init(register_all_protocols, register_all_protocol_handoffs,
+                 NULL, NULL);
 
        /* set the c-language locale to the native environment. */
        setlocale(LC_ALL, "");
 
-       prefs = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
-           &pf_open_errno, &pf_read_errno, &pf_path);
+       read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
+               &pf_open_errno, &pf_read_errno, &pf_path);
        if (gpf_path != NULL) {
                if (gpf_open_errno != 0) {
                        fprintf(stderr,
-                           "can't open global preferences file \"%s\": %s.\n",
-                           pf_path, strerror(gpf_open_errno));
+                               "can't open global preferences file \"%s\": %s.\n",
+                               pf_path, g_strerror(gpf_open_errno));
                }
                if (gpf_read_errno != 0) {
                        fprintf(stderr,
-                           "I/O error reading global preferences file \"%s\": %s.\n",
-                           pf_path, strerror(gpf_read_errno));
+                               "I/O error reading global preferences file \"%s\": %s.\n",
+                               pf_path, g_strerror(gpf_read_errno));
                }
        }
        if (pf_path != NULL) {
                if (pf_open_errno != 0) {
                        fprintf(stderr,
-                           "can't open your preferences file \"%s\": %s.\n",
-                           pf_path, strerror(pf_open_errno));
+                               "can't open your preferences file \"%s\": %s.\n",
+                               pf_path, g_strerror(pf_open_errno));
                }
                if (pf_read_errno != 0) {
                        fprintf(stderr,
-                           "I/O error reading your preferences file \"%s\": %s.\n",
-                           pf_path, strerror(pf_read_errno));
+                               "I/O error reading your preferences file \"%s\": %s.\n",
+                               pf_path, g_strerror(pf_read_errno));
                }
        }
 
@@ -143,20 +145,21 @@ main(int argc, char **argv)
        printf("Filter: \"%s\"\n", text);
 
        /* Compile it */
-       if (!dfilter_compile(text, &df)) {
-               fprintf(stderr, "dftest: %s\n", dfilter_error_msg);
+       if (!dfilter_compile(text, &df, &err_msg)) {
+               fprintf(stderr, "dftest: %s\n", err_msg);
+               g_free(err_msg);
                epan_cleanup();
                exit(2);
        }
-       printf("dfilter ptr = 0x%08x\n", GPOINTER_TO_INT(df));
 
-       printf("\n\n");
+       printf("\n");
 
        if (df == NULL)
                printf("Filter is empty\n");
        else
                dfilter_dump(df);
 
+       dfilter_free(df);
        epan_cleanup();
        exit(0);
 }
@@ -190,7 +193,7 @@ static void
 read_failure_message(const char *filename, int err)
 {
        fprintf(stderr, "dftest: An error occurred while reading from the file \"%s\": %s.\n",
-           filename, strerror(err));
+               filename, g_strerror(err));
 }
 
 /*
@@ -200,5 +203,18 @@ static void
 write_failure_message(const char *filename, int err)
 {
        fprintf(stderr, "dftest: An error occurred while writing to the file \"%s\": %s.\n",
-           filename, strerror(err));
+               filename, g_strerror(err));
 }
+
+/*
+ * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */