/*1* Copyright (c) 1997 Yen Yen Lim and North Dakota State University2* All rights reserved.3*4* Redistribution and use in source and binary forms, with or without5* modification, are permitted provided that the following conditions6* are met:7* 1. Redistributions of source code must retain the above copyright8* notice, this list of conditions and the following disclaimer.9* 2. Redistributions in binary form must reproduce the above copyright10* notice, this list of conditions and the following disclaimer in the11* documentation and/or other materials provided with the distribution.12* 3. All advertising materials mentioning features or use of this software13* must display the following acknowledgement:14* This product includes software developed by Yen Yen Lim and15North Dakota State University16* 4. The name of the author may not be used to endorse or promote products17* derived from this software without specific prior written permission.18*19* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR20* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED21* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE22* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,23* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES24* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR25* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)26* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,27* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN28* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE29* POSSIBILITY OF SUCH DAMAGE.30*/3132/* Based on UNI3.1 standard by ATM Forum */3334/* ATM traffic types based on VPI=0 and (the following VCI */35#define VCI_PPC 0x05 /* Point-to-point signal msg */36#define VCI_BCC 0x02 /* Broadcast signal msg */37#define VCI_OAMF4SC 0x03 /* Segment OAM F4 flow cell */38#define VCI_OAMF4EC 0x04 /* End-to-end OAM F4 flow cell */39#define VCI_METAC 0x01 /* Meta signal msg */40#define VCI_ILMIC 0x10 /* ILMI msg */4142/* Q.2931 signalling messages */43#define CALL_PROCEED 0x02 /* call proceeding */44#define CONNECT 0x07 /* connect */45#define CONNECT_ACK 0x0f /* connect_ack */46#define SETUP 0x05 /* setup */47#define RELEASE 0x4d /* release */48#define RELEASE_DONE 0x5a /* release_done */49#define RESTART 0x46 /* restart */50#define RESTART_ACK 0x4e /* restart ack */51#define STATUS 0x7d /* status */52#define STATUS_ENQ 0x75 /* status ack */53#define ADD_PARTY 0x80 /* add party */54#define ADD_PARTY_ACK 0x81 /* add party ack */55#define ADD_PARTY_REJ 0x82 /* add party rej */56#define DROP_PARTY 0x83 /* drop party */57#define DROP_PARTY_ACK 0x84 /* drop party ack */5859/* Information Element Parameters in the signalling messages */60#define CAUSE 0x08 /* cause */61#define ENDPT_REF 0x54 /* endpoint reference */62#define AAL_PARA 0x58 /* ATM adaptation layer parameters */63#define TRAFF_DESCRIP 0x59 /* atm traffic descriptors */64#define CONNECT_ID 0x5a /* connection identifier */65#define QOS_PARA 0x5c /* quality of service parameters */66#define B_HIGHER 0x5d /* broadband higher layer information */67#define B_BEARER 0x5e /* broadband bearer capability */68#define B_LOWER 0x5f /* broadband lower information */69#define CALLING_PARTY 0x6c /* calling party number */70#define CALLED_PARTY 0x70 /* called party number */7172#define Q2931 0x097374/* Q.2931 signalling general messages format */75#define PROTO_POS 0 /* offset of protocol discriminator */76#define CALL_REF_POS 2 /* offset of call reference value */77#define MSG_TYPE_POS 5 /* offset of message type */78#define MSG_LEN_POS 7 /* offset of message length */79#define IE_BEGIN_POS 9 /* offset of first information element */8081/* format of signalling messages */82#define TYPE_POS 083#define LEN_POS 284#define FIELD_BEGIN_POS 4858687