Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / plugins / epan / unistim / uftp.h
blobc6d9fa7acbd862272e638e255b6296064e6b6c06
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>
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * SPDX-License-Identifier: GPL-2.0-or-later
13 #ifndef UNISTIM_UFTP_H
14 #define UNISTIM_UFTP_H
16 static int hf_uftp_datablock_size;
17 static int hf_uftp_datablock_limit;
18 static int hf_uftp_filename;
19 static int hf_uftp_datablock;
20 static int hf_uftp_command;
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}
32 #endif