Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
uftp.h
1/* uftp.h
2 * header field declarations, value_string def and true_false_string
3 * definitions for uftp commands and messages
4 * Copyright 2007 Chad Singer <[email protected]>
5 *
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <[email protected]>
8 * Copyright 1998 Gerald Combs
9 *
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 */
12
13#ifndef UNISTIM_UFTP_H
14#define UNISTIM_UFTP_H
15
16static int hf_uftp_datablock_size;
17static int hf_uftp_datablock_limit;
18static int hf_uftp_filename;
19static int hf_uftp_datablock;
20static int hf_uftp_command;
21
22static const value_string uftp_commands[]={
23 {0x00,"Connection Granted"},
24 {0x01,"Connection Denied"},
25 {0x02,"File Data Block"},
26 {0x80,"Connection Request"},
27 {0x81,"Connection Details"},
28 {0x82,"Flow Control Off"},
29 {0,NULL}
30};
31
32#endif
33
34
Definition value_string.h:25