summaryrefslogtreecommitdiffstats
path: root/sharkd.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /sharkd.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sharkd.h')
-rw-r--r--sharkd.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/sharkd.h b/sharkd.h
new file mode 100644
index 0000000..4bd3f6d
--- /dev/null
+++ b/sharkd.h
@@ -0,0 +1,73 @@
+/** @file
+ *
+ * Copyright (C) 2016 Jakub Zawadzki
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __SHARKD_H
+#define __SHARKD_H
+
+#include <file.h>
+#include <wiretap/wtap_opttypes.h>
+
+#define SHARKD_DISSECT_FLAG_NULL 0x00u
+#define SHARKD_DISSECT_FLAG_BYTES 0x01u
+#define SHARKD_DISSECT_FLAG_COLUMNS 0x02u
+#define SHARKD_DISSECT_FLAG_PROTO_TREE 0x04u
+#define SHARKD_DISSECT_FLAG_COLOR 0x08u
+
+#define SHARKD_MODE_CLASSIC_CONSOLE 1
+#define SHARKD_MODE_CLASSIC_DAEMON 2
+#define SHARKD_MODE_GOLD_CONSOLE 3
+#define SHARKD_MODE_GOLD_DAEMON 4
+
+typedef void (*sharkd_dissect_func_t)(epan_dissect_t *edt, proto_tree *tree, struct epan_column_info *cinfo, const GSList *data_src, void *data);
+
+/* sharkd.c */
+cf_status_t sharkd_cf_open(const char *fname, unsigned int type, gboolean is_tempfile, int *err);
+int sharkd_load_cap_file(void);
+int sharkd_retap(void);
+int sharkd_filter(const char *dftext, guint8 **result);
+frame_data *sharkd_get_frame(guint32 framenum);
+enum dissect_request_status {
+ DISSECT_REQUEST_SUCCESS,
+ DISSECT_REQUEST_NO_SUCH_FRAME,
+ DISSECT_REQUEST_READ_ERROR
+};
+enum dissect_request_status
+sharkd_dissect_request(guint32 framenum, guint32 frame_ref_num,
+ guint32 prev_dis_num, wtap_rec *rec, Buffer *buf,
+ column_info *cinfo, guint32 dissect_flags,
+ sharkd_dissect_func_t cb, void *data,
+ int *err, gchar **err_info);
+wtap_block_t sharkd_get_modified_block(const frame_data *fd);
+wtap_block_t sharkd_get_packet_block(const frame_data *fd);
+int sharkd_set_modified_block(frame_data *fd, wtap_block_t new_block);
+const char *sharkd_version(void);
+
+/* sharkd_daemon.c */
+int sharkd_init(int argc, char **argv);
+int sharkd_loop(int argc _U_, char* argv[] _U_);
+
+/* sharkd_session.c */
+int sharkd_session_main(int mode_setting);
+
+#endif /* __SHARKD_H */
+
+/*
+ * Editor modelines - https://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:
+ */