wireshark/asn1/h245/packet-h245-template.h

56 lines
1.6 KiB
C
Raw Normal View History

/* packet-h245.h
* Routines for h245 packet dissection
* Copyright 2005, Anders Broman <anders.broman@ericsson.com>
*
* $Id: packet-h245-template.h 12203 2004-10-05 09:18:55Z guy $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef PACKET_H245_H
#define PACKET_H245_H
typedef enum _h245_msg_type {
H245_TermCapSet,
H245_TermCapSetAck,
H245_TermCapSetRjc,
H245_TermCapSetRls,
H245_OpenLogChn,
H245_OpenLogChnCnf,
H245_OpenLogChnAck,
H245_OpenLogChnRjc,
H245_CloseLogChn,
H245_CloseLogChnAck,
H245_MastSlvDet,
H245_MastSlvDetAck,
H245_MastSlvDetRjc,
H245_MastSlvDetRls,
H245_OTHER
} h245_msg_type;
typedef struct _h245_packet_info {
h245_msg_type msg_type; /* type of message */
} h245_packet_info;
#include "packet-h245-exp.h"*/
#endif /* PACKET_H245_H */