Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sys / net / i4b / layer3 / i4b_q931.h
1 /*
2  * Copyright (c) 1997, 2001 Hellmuth Michaelis. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  *---------------------------------------------------------------------------
26  *
27  *      i4b_q931.h - Q931 handling header file
28  *      --------------------------------------
29  *
30  *      $Id: i4b_q931.h,v 1.9 2000/04/27 09:25:22 hm Exp $ 
31  *
32  * $FreeBSD: src/sys/i4b/layer3/i4b_q931.h,v 1.6.2.2 2001/12/16 15:12:58 hm Exp $
33  * $DragonFly: src/sys/net/i4b/layer3/i4b_q931.h,v 1.2 2003/06/17 04:28:40 dillon Exp $
34  *
35  *      last edit-date: [Thu Apr 27 11:07:37 2000]
36  *
37  *---------------------------------------------------------------------------*/
38
39 #ifndef _I4B_Q931_H_
40 #define _I4B_Q931_H_
41
42 /* extension bit */
43
44 #define EXT_LAST                0x80    /* last octett */
45
46 /* reserve space in mbuf */
47
48 #define I_FRAME_HDRLEN          4       /* to be added by layer 2 */
49
50 /* SHIFT */
51
52 #define CODESET_MASK            0x07
53 #define UNSHIFTED               0
54 #define SHIFTED                 1
55 #define CRLENGTH_MASK           0x0f
56
57 /* CONNECT */
58
59 #define MSG_CONNECT_LEN         4       /* length of a connect message */
60
61 /* DISCONNECT */
62
63 #define MSG_DISCONNECT_LEN      8       /* length of a disconnect message */
64
65 /* RELEASE COMPLETE */
66
67 #define MSG_RELEASE_COMPLETE_LEN 8      /* length of release complete msg */
68
69 /* for outgoing causes */
70
71 #define CAUSE_LEN               2
72 #define CAUSE_STD_LOC_OUT       0x80    /* std = CCITT, loc = user */
73
74 /* SETUP */
75
76 #define MSG_SETUP_LEN           12      /* without called party,        */
77                                         /*      calling party and       */
78                                         /*      keypad facility !       */
79
80 #define IEI_BEARERCAP_LEN       2       /* 2 octetts length */
81
82 #define IT_CAP_SPEECH           0x80    /* BC: information xfer capability */
83 #define IT_CAP_UNR_DIG_INFO     0x88    /* BC: information xfer capability */
84
85 #define IT_RATE_64K             0x90    /* BC: information xfer rate */
86 #define IT_UL1_G711A            0xa3    /* layer1 proto G.711 A-law */
87
88 #define IEI_CHANNELID_LEN       0x01    /* length of channel id         */
89 #define CHANNELID_B1            0x81    /* channel = B1 (outgoing) */
90 #define CHANNELID_B2            0x82    /* channel = B2 (outgoing) */
91 #define CHANNELID_ANY           0x83    /* channel = any channel (outgoing) */
92
93 #define IE_CHAN_ID_NO           0x00    /* no channel (incoming)        */
94 #define IE_CHAN_ID_B1           0x01    /* B1 channel (incoming)        */
95 #define IE_CHAN_ID_B2           0x02    /* B2 channel (incoming)        */
96 #define IE_CHAN_ID_ANY          0x03    /* ANY channel (incoming)       */
97
98 #define NUMBER_TYPEPLAN         0x81    /* type of number/numbering plan */
99
100 #define IEI_CALLINGPN_LEN       1       /* without number string ! */
101
102 #define IEI_CALLEDPN_LEN        1       /* without number string ! */
103
104 /* CONNECT_ACK */
105
106 #define MSG_CONNECT_ACK_LEN     4       /* length of a connect ack message */
107
108 /* STATUS */
109
110 #define MSG_STATUS_LEN          11
111 #define CALLSTATE_LEN           1
112
113 /* RELEASE */
114
115 #define MSG_RELEASE_LEN         8       /* length of release msg */
116
117 /* ALERT */
118
119 #define MSG_ALERT_LEN           4       /* length of a alert message */
120
121 #endif /* _I4B_Q931_H_ */
122
123 /* EOF */