diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-01-14 11:17:35 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-01-14 11:17:35 +0000 |
commit | 544216dd749011dd37083806515392fad4dc3342 (patch) | |
tree | a79c77ef3f2e52eba3b13c62b701e3299b5a1fbd /epan/dissectors/packet-rmt-alc.h | |
parent | c3240e1ccb2042798f99b4fee774327bb9e188c4 (diff) | |
download | wireshark-544216dd749011dd37083806515392fad4dc3342.tar.gz wireshark-544216dd749011dd37083806515392fad4dc3342.tar.bz2 wireshark-544216dd749011dd37083806515392fad4dc3342.zip |
From Stefano Pettini: RMT support for ALC and NORM.
svn path=/trunk/; revision=13029
Diffstat (limited to 'epan/dissectors/packet-rmt-alc.h')
-rw-r--r-- | epan/dissectors/packet-rmt-alc.h | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rmt-alc.h b/epan/dissectors/packet-rmt-alc.h new file mode 100644 index 0000000000..a60e0cfdd4 --- /dev/null +++ b/epan/dissectors/packet-rmt-alc.h @@ -0,0 +1,81 @@ +/* packet-rmt-alc.h + * Reliable Multicast Transport (RMT) + * ALC Protocol Instantiation function definitions + * Copyright 2005, Stefano Pettini <spettini@users.sourceforge.net> + * + * $Id$ + * + * 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_RMT_ALC__ +#define __PACKET_RMT_ALC__ + +#include "packet-rmt-common.h" +#include "packet-rmt-lct.h" +#include "packet-rmt-fec.h" + +/* Type definitions */ +/* ================ */ + +/* Logical ALC packet representation */ +struct _alc +{ + guint8 version; + struct _lct lct; + struct _fec fec; +}; + +/* Ethereal stuff */ +/* ============== */ + +/* ALC header field definitions*/ +struct _alc_hf +{ + int version; + + struct _lct_hf lct; + struct _fec_hf fec; + + int payload; +}; + +/* ALC subtrees */ +struct _alc_ett +{ + gint main; + + struct _lct_ett lct; + struct _fec_ett fec; +}; + +/* ALC preferences */ +struct _alc_prefs +{ + gboolean use_default_udp_port; + guint default_udp_port; + + struct _lct_prefs lct; + struct _fec_prefs fec; +}; + +/* Function declarations */ +/* ===================== */ + +#endif |