/usr/include/openr2/r2proto.h is in libopenr2-dev 1.3.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | /*
* OpenR2
* MFC/R2 call setup library
*
* Moises Silva <moy@sangoma.com>
* Copyright (C) 2008 Moises Silva
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef _OPENR2_PROTO_H_
#define _OPENR2_PROTO_H_
#if defined(__cplusplus)
extern "C" {
#endif
#ifdef __OR2_COMPILING_LIBRARY__
struct openr2_chan_s;
#define openr2_chan_t struct openr2_chan_s
struct openr2_context_s;
#define openr2_context_t struct openr2_context_s
#else
#ifndef OR2_CHAN_AND_CONTEXT_DEFINED
#define OR2_CHAN_AND_CONTEXT_DEFINED
typedef void* openr2_chan_t;
typedef void* openr2_context_t;
#endif
#endif
#define OR2_MAX_ANI 80
#define OR2_MAX_DNIS 80
#define OR2_DEFAULT_DTMF_ON 50
#define OR2_DEFAULT_DTMF_OFF 100
/*
This are known as Multi Frequency signals ( MF signals). the same 15 inter-register signals
are used for the distinct groups with distinct meanings for each group.
Group A, B and C are the Backward groups, that is, the possible groups where the state machine
of the callee can be at.
Groups I, II and III are the Forward groups, that is, the possible groups where the state machine
of the caller can be at.
During Group A or C, the callee will receive DNIS or ANI digits ( depending on the R2 variant )
and will request more digits. The caller end will be at Group I or III sending the requested digits.
During Group B the callee either accept or reject the call. The caller will be in Group II
waiting for the caller decision.
Group C is a special case for Mexico, there is where ANI is requested. The caller
will be in Group III during this phase.
*/
/* MF signals. The MF interface must understand this
code points to match them to the proper pair of
frequencies. This code points were chosen to match
the SpanDSP Library. Usage of Zaptel MF requires to
match SpandSP and Zaptel identifiers */
typedef enum {
OR2_MF_TONE_INVALID = 0,
OR2_MF_TONE_1 = '1',
OR2_MF_TONE_2 = '2',
OR2_MF_TONE_3 = '3',
OR2_MF_TONE_4 = '4',
OR2_MF_TONE_5 = '5',
OR2_MF_TONE_6 = '6',
OR2_MF_TONE_7 = '7',
OR2_MF_TONE_8 = '8',
OR2_MF_TONE_9 = '9',
OR2_MF_TONE_10 = '0',
OR2_MF_TONE_11 = 'B',
OR2_MF_TONE_12 = 'C',
OR2_MF_TONE_13 = 'D',
OR2_MF_TONE_14 = 'E',
OR2_MF_TONE_15 = 'F'
} openr2_mf_tone_t;
/* MFC/R2 variants */
typedef enum {
OR2_VAR_ARGENTINA = 0,
OR2_VAR_BRAZIL = 20,
OR2_VAR_CHINA = 40,
OR2_VAR_CZECH = 60,
OR2_VAR_COLOMBIA = 70,
OR2_VAR_ECUADOR = 80,
OR2_VAR_INDONESIA = 90,
OR2_VAR_ITU = 100,
OR2_VAR_MEXICO = 120,
OR2_VAR_PHILIPPINES = 140,
OR2_VAR_VENEZUELA = 160,
OR2_VAR_UNKNOWN = 999
} openr2_variant_t;
/* Variant configuration function and variant table entry */
typedef void (*openr2_variant_config_func)(openr2_context_t *);
typedef struct {
openr2_variant_t id;
const char *name;
const char *country;
openr2_variant_config_func config;
} openr2_variant_entry_t;
/* at any given time we either are stopped (idle or blocked), forward or backward */
typedef enum {
OR2_DIR_STOPPED,
OR2_DIR_FORWARD,
OR2_DIR_BACKWARD
} openr2_direction_t;
/* Call modes */
typedef enum {
OR2_CALL_WITH_CHARGE,
OR2_CALL_NO_CHARGE,
OR2_CALL_SPECIAL,
OR2_CALL_UNKNOWN
} openr2_call_mode_t;
/* Answer modes */
typedef enum {
OR2_ANSWER_SIMPLE,
OR2_ANSWER_DOUBLE
} openr2_answer_mode_t;
/* Disconnect causes */
typedef enum {
OR2_CAUSE_BUSY_NUMBER,
OR2_CAUSE_NETWORK_CONGESTION,
OR2_CAUSE_UNALLOCATED_NUMBER,
OR2_CAUSE_OUT_OF_ORDER,
OR2_CAUSE_UNSPECIFIED,
OR2_CAUSE_NO_ANSWER,
OR2_CAUSE_NORMAL_CLEARING,
OR2_CAUSE_COLLECT_CALL_REJECTED,
OR2_CAUSE_FORCED_RELEASE,
OR2_CAUSE_NUMBER_CHANGED
} openr2_call_disconnect_cause_t;
/* possible causes of protocol error */
typedef enum {
OR2_INVALID_CAS_BITS,
OR2_INVALID_MF_TONE,
OR2_BACK_MF_TIMEOUT,
OR2_SEIZE_TIMEOUT,
OR2_FWD_SAFETY_TIMEOUT,
OR2_BROKEN_MF_SEQUENCE,
OR2_ANSWER_TIMEOUT,
OR2_INVALID_R2_STATE,
OR2_INVALID_MF_STATE,
OR2_INVALID_MF_GROUP,
OR2_LIBRARY_BUG,
OR2_INTERNAL_ERROR
} openr2_protocol_error_t;
/* possible calling party categories */
typedef enum {
OR2_CALLING_PARTY_CATEGORY_NATIONAL_SUBSCRIBER = 0,
OR2_CALLING_PARTY_CATEGORY_NATIONAL_PRIORITY_SUBSCRIBER,
OR2_CALLING_PARTY_CATEGORY_INTERNATIONAL_SUBSCRIBER,
OR2_CALLING_PARTY_CATEGORY_INTERNATIONAL_PRIORITY_SUBSCRIBER,
OR2_CALLING_PARTY_CATEGORY_COLLECT_CALL,
OR2_CALLING_PARTY_CATEGORY_UNKNOWN,
OR2_CALLING_PARTY_CATEGORY_TEST_EQUIPMENT
} openr2_calling_party_category_t;
const char *openr2_proto_get_error(openr2_protocol_error_t reason);
const char *openr2_proto_get_disconnect_string(openr2_call_disconnect_cause_t cause);
const char *openr2_proto_get_category_string(openr2_calling_party_category_t category);
openr2_calling_party_category_t openr2_proto_get_category(const char *category);
const char *openr2_proto_get_variant_string(openr2_variant_t variant);
openr2_variant_t openr2_proto_get_variant(const char *variant);
const char *openr2_proto_get_call_mode_string(openr2_call_mode_t mode);
const openr2_variant_entry_t *openr2_proto_get_variant_list(int *numvariants);
#ifdef __OR2_COMPILING_LIBRARY__
#undef openr2_chan_t
#undef openr2_context_t
#endif
#if defined(__cplusplus)
} /* endif extern "C" */
#endif
#endif /* endif defined _OPENR2_PROTO_H_ */
|