Use common indenting space in heading
[metze/wireshark/wip.git] / plugins / epan / unistim / 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 <csinger@cypresscom.net>
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
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
16 static int hf_uftp_datablock_size=-1;
17 static int hf_uftp_datablock_limit=-1;
18 static int hf_uftp_filename=-1;
19 static int hf_uftp_datablock=-1;
20 static int hf_uftp_command=-1;
21
22 static 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