aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-uaudp.h
diff options
context:
space:
mode:
authoralagoutte <alagoutte@f5534014-38df-0310-8fa8-9805f1628bb7>2012-02-22 09:18:30 +0000
committeralagoutte <alagoutte@f5534014-38df-0310-8fa8-9805f1628bb7>2012-02-22 09:18:30 +0000
commit36c15ed468eb3e55abcc2043ecc5ea66f104631b (patch)
treecb90ec5f6429ace5ed1366bb84cb78073f4588ce /epan/dissectors/packet-uaudp.h
parent399810d7424e303281d0bb3fa04f8d402f6018b6 (diff)
Reverse Revision 41134 (Need to fix error/warning before...)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41135 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-uaudp.h')
-rw-r--r--epan/dissectors/packet-uaudp.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/epan/dissectors/packet-uaudp.h b/epan/dissectors/packet-uaudp.h
deleted file mode 100644
index 0051623ee5..0000000000
--- a/epan/dissectors/packet-uaudp.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* packet-uaudp.h
- * Routines for UA/UDP (Universal Alcatel over UDP) packet dissection.
- * Copyright 2012, Alcatel-Lucent Enterprise <lars.ruoff@alcatel-lucent.com>
- *
- * $Id:
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * 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_UAUDP_H_
-#define _PACKET_UAUDP_H_
-
-#include <gmodule.h>
-
-#define UAUDP_CONNECT 0
-#define UAUDP_CONNECT_ACK 1
-#define UAUDP_RELEASE 2
-#define UAUDP_RELEASE_ACK 3
-#define UAUDP_KEEPALIVE 4
-#define UAUDP_KEEPALIVE_ACK 5
-#define UAUDP_NACK 6
-#define UAUDP_DATA 7
-
-typedef enum _e_ua_direction {
- SYS_TO_TERM, /* system -> terminal */
- TERM_TO_SYS, /* terminal -> system */
- DIR_UNKNOWN /* unknown direction */
-} e_ua_direction;
-
-/* struct for tap ethereal */
-typedef struct _tap_struct_uaudp {
- guint opcode;
- guint expseq; /* expected sequence number */
- guint sntseq; /* sent sequence number */
-} tap_struct_uaudp;
-
-#endif /* _PACKET_UAUDP_H_ */