1127664Sbms/*
2127664Sbms * Copyright (c) 1997 Yen Yen Lim and North Dakota State University
3127664Sbms * All rights reserved.
4127664Sbms *
5127664Sbms * Redistribution and use in source and binary forms, with or without
6127664Sbms * modification, are permitted provided that the following conditions
7127664Sbms * are met:
8127664Sbms * 1. Redistributions of source code must retain the above copyright
9127664Sbms *    notice, this list of conditions and the following disclaimer.
10127664Sbms * 2. Redistributions in binary form must reproduce the above copyright
11127664Sbms *    notice, this list of conditions and the following disclaimer in the
12127664Sbms *    documentation and/or other materials provided with the distribution.
13127664Sbms * 3. All advertising materials mentioning features or use of this software
14127664Sbms *    must display the following acknowledgement:
15127664Sbms *      This product includes software developed by Yen Yen Lim and
16127664Sbms        North Dakota State University
17127664Sbms * 4. The name of the author may not be used to endorse or promote products
18127664Sbms *    derived from this software without specific prior written permission.
19127664Sbms *
20127664Sbms * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21127664Sbms * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22127664Sbms * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23127664Sbms * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24127664Sbms * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25127664Sbms * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26127664Sbms * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27127664Sbms * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28127664Sbms * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29127664Sbms * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30127664Sbms * POSSIBILITY OF SUCH DAMAGE.
31127664Sbms *
32214518Srpaulo * @(#) $Header: /tcpdump/master/libpcap/atmuni31.h,v 1.3 2007-10-22 19:28:58 guy Exp $ (LBL)
33127664Sbms */
34127664Sbms
35127664Sbms/* Based on UNI3.1 standard by ATM Forum */
36127664Sbms
37127664Sbms/* ATM traffic types based on VPI=0 and (the following VCI */
38190225Srpaulo#define VCI_PPC			0x05	/* Point-to-point signal msg */
39190225Srpaulo#define VCI_BCC			0x02	/* Broadcast signal msg */
40190225Srpaulo#define VCI_OAMF4SC		0x03	/* Segment OAM F4 flow cell */
41190225Srpaulo#define VCI_OAMF4EC		0x04	/* End-to-end OAM F4 flow cell */
42190225Srpaulo#define VCI_METAC		0x01	/* Meta signal msg */
43190225Srpaulo#define VCI_ILMIC		0x10	/* ILMI msg */
44127664Sbms
45127664Sbms/* Q.2931 signalling messages */
46127664Sbms#define CALL_PROCEED		0x02	/* call proceeding */
47127664Sbms#define CONNECT			0x07	/* connect */
48127664Sbms#define CONNECT_ACK		0x0f	/* connect_ack */
49127664Sbms#define SETUP			0x05	/* setup */
50127664Sbms#define RELEASE			0x4d	/* release */
51127664Sbms#define RELEASE_DONE		0x5a	/* release_done */
52127664Sbms#define RESTART			0x46	/* restart */
53127664Sbms#define RESTART_ACK		0x4e	/* restart ack */
54127664Sbms#define STATUS			0x7d	/* status */
55127664Sbms#define STATUS_ENQ		0x75	/* status ack */
56127664Sbms#define ADD_PARTY		0x80	/* add party */
57127664Sbms#define ADD_PARTY_ACK		0x81	/* add party ack */
58127664Sbms#define ADD_PARTY_REJ		0x82	/* add party rej */
59127664Sbms#define DROP_PARTY		0x83	/* drop party */
60127664Sbms#define DROP_PARTY_ACK		0x84	/* drop party ack */
61127664Sbms
62127664Sbms/* Information Element Parameters in the signalling messages */
63127664Sbms#define CAUSE			0x08	/* cause */
64127664Sbms#define ENDPT_REF		0x54	/* endpoint reference */
65127664Sbms#define AAL_PARA		0x58	/* ATM adaptation layer parameters */
66127664Sbms#define TRAFF_DESCRIP		0x59	/* atm traffic descriptors */
67127664Sbms#define CONNECT_ID		0x5a	/* connection identifier */
68127664Sbms#define QOS_PARA		0x5c	/* quality of service parameters */
69127664Sbms#define B_HIGHER		0x5d	/* broadband higher layer information */
70127664Sbms#define B_BEARER		0x5e	/* broadband bearer capability */
71127664Sbms#define B_LOWER			0x5f	/* broadband lower information */
72127664Sbms#define CALLING_PARTY		0x6c	/* calling party number */
73127664Sbms#define CALLED_PARTY		0x70	/* called party nmber */
74127664Sbms
75127664Sbms#define Q2931			0x09
76127664Sbms
77127664Sbms/* Q.2931 signalling general messages format */
78127664Sbms#define PROTO_POS       0	/* offset of protocol discriminator */
79127664Sbms#define CALL_REF_POS    2	/* offset of call reference value */
80127664Sbms#define MSG_TYPE_POS    5	/* offset of message type */
81127664Sbms#define MSG_LEN_POS     7	/* offset of mesage length */
82127664Sbms#define IE_BEGIN_POS    9	/* offset of first information element */
83127664Sbms
84127664Sbms/* format of signalling messages */
85127664Sbms#define TYPE_POS	0
86127664Sbms#define LEN_POS		2
87127664Sbms#define FIELD_BEGIN_POS 4
88