Blame atmuni31.h

Packit 209cc3
/*
Packit 209cc3
 * Copyright (c) 1997 Yen Yen Lim and North Dakota State University
Packit 209cc3
 * All rights reserved.
Packit 209cc3
 *
Packit 209cc3
 * Redistribution and use in source and binary forms, with or without
Packit 209cc3
 * modification, are permitted provided that the following conditions
Packit 209cc3
 * are met:
Packit 209cc3
 * 1. Redistributions of source code must retain the above copyright
Packit 209cc3
 *    notice, this list of conditions and the following disclaimer.
Packit 209cc3
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 209cc3
 *    notice, this list of conditions and the following disclaimer in the
Packit 209cc3
 *    documentation and/or other materials provided with the distribution.
Packit 209cc3
 * 3. All advertising materials mentioning features or use of this software
Packit 209cc3
 *    must display the following acknowledgement:
Packit 209cc3
 *      This product includes software developed by Yen Yen Lim and
Packit 209cc3
        North Dakota State University
Packit 209cc3
 * 4. The name of the author may not be used to endorse or promote products
Packit 209cc3
 *    derived from this software without specific prior written permission.
Packit 209cc3
 *
Packit 209cc3
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
Packit 209cc3
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
Packit 209cc3
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 209cc3
 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
Packit 209cc3
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
Packit 209cc3
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 209cc3
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit 209cc3
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
Packit 209cc3
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
Packit 209cc3
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit 209cc3
 * POSSIBILITY OF SUCH DAMAGE.
Packit 209cc3
 */
Packit 209cc3
Packit 209cc3
/* Based on UNI3.1 standard by ATM Forum */
Packit 209cc3
Packit 209cc3
/* ATM traffic types based on VPI=0 and (the following VCI */
Packit 209cc3
#define VCI_PPC			0x05	/* Point-to-point signal msg */
Packit 209cc3
#define VCI_BCC			0x02	/* Broadcast signal msg */
Packit 209cc3
#define VCI_OAMF4SC		0x03	/* Segment OAM F4 flow cell */
Packit 209cc3
#define VCI_OAMF4EC		0x04	/* End-to-end OAM F4 flow cell */
Packit 209cc3
#define VCI_METAC		0x01	/* Meta signal msg */
Packit 209cc3
#define VCI_ILMIC		0x10	/* ILMI msg */
Packit 209cc3
Packit 209cc3
/* Q.2931 signalling messages */
Packit 209cc3
#define CALL_PROCEED		0x02	/* call proceeding */
Packit 209cc3
#define CONNECT			0x07	/* connect */
Packit 209cc3
#define CONNECT_ACK		0x0f	/* connect_ack */
Packit 209cc3
#define SETUP			0x05	/* setup */
Packit 209cc3
#define RELEASE			0x4d	/* release */
Packit 209cc3
#define RELEASE_DONE		0x5a	/* release_done */
Packit 209cc3
#define RESTART			0x46	/* restart */
Packit 209cc3
#define RESTART_ACK		0x4e	/* restart ack */
Packit 209cc3
#define STATUS			0x7d	/* status */
Packit 209cc3
#define STATUS_ENQ		0x75	/* status ack */
Packit 209cc3
#define ADD_PARTY		0x80	/* add party */
Packit 209cc3
#define ADD_PARTY_ACK		0x81	/* add party ack */
Packit 209cc3
#define ADD_PARTY_REJ		0x82	/* add party rej */
Packit 209cc3
#define DROP_PARTY		0x83	/* drop party */
Packit 209cc3
#define DROP_PARTY_ACK		0x84	/* drop party ack */
Packit 209cc3
Packit 209cc3
/* Information Element Parameters in the signalling messages */
Packit 209cc3
#define CAUSE			0x08	/* cause */
Packit 209cc3
#define ENDPT_REF		0x54	/* endpoint reference */
Packit 209cc3
#define AAL_PARA		0x58	/* ATM adaptation layer parameters */
Packit 209cc3
#define TRAFF_DESCRIP		0x59	/* atm traffic descriptors */
Packit 209cc3
#define CONNECT_ID		0x5a	/* connection identifier */
Packit 209cc3
#define QOS_PARA		0x5c	/* quality of service parameters */
Packit 209cc3
#define B_HIGHER		0x5d	/* broadband higher layer information */
Packit 209cc3
#define B_BEARER		0x5e	/* broadband bearer capability */
Packit 209cc3
#define B_LOWER			0x5f	/* broadband lower information */
Packit 209cc3
#define CALLING_PARTY		0x6c	/* calling party number */
Packit 209cc3
#define CALLED_PARTY		0x70	/* called party nmber */
Packit 209cc3
Packit 209cc3
#define Q2931			0x09
Packit 209cc3
Packit 209cc3
/* Q.2931 signalling general messages format */
Packit 209cc3
#define PROTO_POS       0	/* offset of protocol discriminator */
Packit 209cc3
#define CALL_REF_POS    2	/* offset of call reference value */
Packit 209cc3
#define MSG_TYPE_POS    5	/* offset of message type */
Packit 209cc3
#define MSG_LEN_POS     7	/* offset of mesage length */
Packit 209cc3
#define IE_BEGIN_POS    9	/* offset of first information element */
Packit 209cc3
Packit 209cc3
/* format of signalling messages */
Packit 209cc3
#define TYPE_POS	0
Packit 209cc3
#define LEN_POS		2
Packit 209cc3
#define FIELD_BEGIN_POS 4