Wireshark 4.5.0
The Wireshark network protocol analyzer
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
/builds/wireshark/wireshark/sharkd.h
Go to the documentation of this file.
1
12#ifndef __SHARKD_H
13#define __SHARKD_H
14
15#include <file.h>
17
18#define SHARKD_DISSECT_FLAG_NULL 0x00u
19#define SHARKD_DISSECT_FLAG_BYTES 0x01u
20#define SHARKD_DISSECT_FLAG_COLUMNS 0x02u
21#define SHARKD_DISSECT_FLAG_PROTO_TREE 0x04u
22#define SHARKD_DISSECT_FLAG_COLOR 0x08u
23
24#define SHARKD_MODE_CLASSIC_CONSOLE 1
25#define SHARKD_MODE_CLASSIC_DAEMON 2
26#define SHARKD_MODE_GOLD_CONSOLE 3
27#define SHARKD_MODE_GOLD_DAEMON 4
28
29typedef void (*sharkd_dissect_func_t)(epan_dissect_t *edt, proto_tree *tree, struct epan_column_info *cinfo, const GSList *data_src, void *data);
30
31#define LONGOPT_FOREGROUND 4000
32
33/* sharkd.c */
34cf_status_t sharkd_cf_open(const char *fname, unsigned int type, bool is_tempfile, int *err);
35int sharkd_load_cap_file(void);
36int sharkd_retap(void);
37int sharkd_filter(const char *dftext, uint8_t **result);
38frame_data *sharkd_get_frame(uint32_t framenum);
39enum dissect_request_status {
40 DISSECT_REQUEST_SUCCESS,
41 DISSECT_REQUEST_NO_SUCH_FRAME,
42 DISSECT_REQUEST_READ_ERROR
43};
44enum dissect_request_status
45sharkd_dissect_request(uint32_t framenum, uint32_t frame_ref_num,
46 uint32_t prev_dis_num, wtap_rec *rec,
47 column_info *cinfo, uint32_t dissect_flags,
48 sharkd_dissect_func_t cb, void *data,
49 int *err, char **err_info);
50wtap_block_t sharkd_get_modified_block(const frame_data *fd);
51wtap_block_t sharkd_get_packet_block(const frame_data *fd);
52int sharkd_set_modified_block(frame_data *fd, wtap_block_t new_block);
53const char *sharkd_version(void);
54const struct ws_option* sharkd_long_options(void);
55const char* sharkd_optstring(void);
56
57
58/* sharkd_daemon.c */
59int sharkd_init(int argc, char **argv);
60int sharkd_loop(int argc _U_, char* argv[] _U_);
61
62/* sharkd_session.c */
63int sharkd_session_main(int mode_setting);
64
65#endif /* __SHARKD_H */
66
67/*
68 * Editor modelines - https://www.wireshark.org/tools/modelines.html
69 *
70 * Local variables:
71 * c-basic-offset: 8
72 * tab-width: 8
73 * indent-tabs-mode: t
74 * End:
75 *
76 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
77 * :indentSize=8:tabSize=8:noTabs=false:
78 */
cf_status_t
Definition file.h:26
Definition proto.h:906
Definition column-info.h:62
Definition epan_dissect.h:28
Definition ws_getopt.h:42
Definition wtap_opttypes.c:85
Definition wtap.h:1433