Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
/builds/wireshark/wireshark/text2pcap.h
Go to the documentation of this file.
1
15#ifndef TEXT2PCAP_H
16#define TEXT2PCAP_H
17
18typedef enum {
19 T_BYTE = 1,
20 T_OFFSET,
21 T_DIRECTIVE,
22 T_TEXT,
23 T_EOL
24} token_t;
25
35int parse_token(token_t token, char *str);
36
46
47#endif
48
49/*
50 * Editor modelines - https://www.wireshark.org/tools/modelines.html
51 *
52 * Local variables:
53 * c-basic-offset: 4
54 * tab-width: 8
55 * indent-tabs-mode: nil
56 * End:
57 *
58 * vi: set shiftwidth=4 tabstop=8 expandtab:
59 * :indentSize=4:tabSize=8:noTabs=true:
60 */
Definition busmaster_priv.h:75
int text2pcap_scan(void)
Scans for text2pcap utility functionality.
int parse_token(token_t token, char *str)
Parses a token from a string.
Definition text_import.c:1426