This file is indexed.

/usr/include/osp/ospdest.h is in libosptk-dev 4.13.0-1build1.

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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/**************************************************************************
*** COPYRIGHT (c) 2002 by TransNexus, Inc.                              ***
***                                                                     ***
*** This software is property of TransNexus, Inc.                       ***
*** This software is freely available under license from TransNexus.    ***
*** The license terms and conditions for free use of this software by   ***
*** third parties are defined in the OSP Toolkit Software License       ***
*** Agreement (LICENSE.txt).  Any use of this software by third         ***
*** parties, which does not comply with the terms and conditions of the ***
*** OSP Toolkit Software License Agreement is prohibited without        ***
*** the prior, express, written consent of TransNexus, Inc.             ***
***                                                                     ***
*** Thank you for using the OSP ToolKit(TM).  Please report any bugs,   ***
*** suggestions or feedback to support@transnexus.com                   ***
***                                                                     ***
**************************************************************************/

/* ospdest.h - OSP destination objects */
#ifndef _OSPDEST_H
#define _OSPDEST_H

#include "osp/osp.h"
#include "osp/ospxmlelem.h"
#include "osp/ospmsg.h"
#include "osp/ospcallid.h"
#include "osp/osptoken.h"
#include "osp/ospmsgdesc.h"

/* Signaling Protocol Names */
typedef enum {
    OSPC_PROTNAME_UNKNOWN = OSPC_MPART_UNKNOWN,    /* Could not be understood by the Client as Sent by the Server */
    OSPC_PROTNAME_UNDEFINED,                       /* Not Configured at Server */
    /* Message attribute start */
    OSPC_PROTNAME_START = OSPC_MPART_START,        /* Start */
    OSPC_PROTNAME_SIP = OSPC_PROTNAME_START,       /* SIP */
    OSPC_PROTNAME_Q931,                            /* H323, Send Setup to Complete Call */
    OSPC_PROTNAME_LRQ,                             /* H323, Send LRQ to GK to Complete Call */
    OSPC_PROTNAME_IAX,                             /* IAX */
    OSPC_PROTNAME_T37,                             /* Fax T.37 */
    OSPC_PROTNAME_T38,                             /* Fax T.38 */
    OSPC_PROTNAME_SKYPE,                           /* Skype */
    OSPC_PROTNAME_SMPP,                            /* SMPP */
    OSPC_PROTNAME_XMPP,                            /* XMPP */
    OSPC_PROTNAME_SMS,                             /* SMS */
    /* Number of signaling protocol types */
    OSPC_PROTNAME_NUMBER
} OSPE_PROTOCOL_NAME;

#define OSPM_VALIDATE_PROTNAME(n)   (((n>=OSPC_PROTNAME_START)&&(n<OSPC_PROTNAME_NUMBER))||(n==OSPC_PROTNAME_UNKNOWN)||(n==OSPC_PROTNAME_UNDEFINED))

/* externally declared global variables */
extern const OSPT_MSG_DESC OSPV_PROTNAME_DESCS[];

/* Destination OSP Enabled Data Type */
typedef enum {
    OSPC_DOSP_UNKNOWN = 0,    /* Could not be understood by the Client as Sent by the Server */
    OSPC_DOSP_UNDEFINED,      /* Not Configured at Server */
    OSPC_DOSP_TRUE,           /* Destination is OSP Enabled */
    OSPC_DOSP_FALSE           /* Destination is Not OSP Enabled */
} OSPE_DEST_OSPENABLED;

#define DEST_OSP_DIABLED                "0.0.0"
#define DEST_OSP_UNKNOWN                ""

/* Operator Name Type */
typedef enum {
    OSPC_OPNAME_UNKNOWN = OSPC_MPART_UNKNOWN,   /* Could not be understood by the Client as Sent by the Server */
    OSPC_OPNAME_UNDEFINED,                      /* Not Configured at Server */
    OSPC_OPNAME_START = 0,                      /* Operator Name start */
    OSPC_OPNAME_SPID = OSPC_OPNAME_START,       /* Service Provider ID */
    OSPC_OPNAME_ALTSPID,                        /* Alternative SPID */
    OSPC_OPNAME_OCN,                            /* Operating Company Number */
    OSPC_OPNAME_SPN,                            /* Service Provider Name */
    OSPC_OPNAME_ALTSPN,                         /* Alternate SPN */
    OSPC_OPNAME_MCC,                            /* Mobile Country Code */
    OSPC_OPNAME_MNC,                            /* Mobile Network Code */
    /* Number of operator name types */
    OSPC_OPNAME_NUMBER
} OSPE_OPERATOR_NAME;

/* URL types */
typedef enum {
    OSPC_URL_UNKNOWN = OSPC_MPART_UNKNOWN,  /* Could not be understood by the Client as Sent by the Server */
    OSPC_URL_UNDEFINED,                     /* Not Configured at Server */
    OSPC_URL_START = 0,                     /* URL start */
    OSPC_URL_SIP = OSPC_URL_START,          /* SIP */
    OSPC_URL_SMS,                           /* SMS */
    OSPC_URL_MMS,                           /* MMS */
    /* Number of URL types */
    OSPC_URL_NUMBER
} OSPE_URL_TYPE;

/* Call party type */
typedef enum {
    OSPC_CPARTY_START = 0,
    OSPC_CPARTY_SOURCE = OSPC_CPARTY_START,
    OSPC_CPARTY_DESTINATION,
    OSPC_CPARTY_NUMBER
} OSPE_CALL_PARTY;

#define DEFAULT_GETNEXTDEST_NO_ERROR    99999

/* Call party info */
typedef struct {
    char UserName[OSPC_SIZE_NORSTR];
    char UserId[OSPC_SIZE_NORSTR];
    char UserGroup[OSPC_SIZE_NORSTR];
} OSPT_CALL_PARTY;

typedef struct {
    OSPTLISTLINK Link;
    char SourceNumber[OSPC_SIZE_E164NUM];
    char DestinationNumber[OSPC_SIZE_E164NUM];
    char DestinationAddr[OSPC_SIZE_SIGNALADDR];
    char DestinationDevAddr[OSPC_SIZE_SIGNALADDR];
    OSPTLIST UpdatedSourceAddr;
    OSPTLIST UpdatedDeviceInfo;
    OSPTTIME ValidAfter;
    OSPTTIME ValidUntil;
    OSPTLIST Tokens;
    char Authority[OSPC_SIZE_URL];
    OSPTBOOL HasLimit;
    unsigned Limit;
    OSPT_CALL_ID *CallId;
    OSPT_TERM_CAUSE TermCause;
    OSPE_PROTOCOL_NAME Protocol;
    OSPE_DEST_OSPENABLED OSPVersion;
    char NetworkId[OSPC_SIZE_NORID];
    unsigned Count;
    int SetupAttempt;
    char NPRn[OSPC_SIZE_E164NUM];
    char NPCic[OSPC_SIZE_NORID];
    int NPNpdi;
    char OpName[OSPC_OPNAME_NUMBER][OSPC_SIZE_NORID];
    char URL[OSPC_URL_NUMBER][OSPC_SIZE_URL];
    OSPE_ROLE_STATE RoleState;
    OSPE_ROLE_FORMAT RoleFormat;
    OSPE_ROLE_VENDOR RoleVendor;
    OSPT_CALL_PARTY CalledParty;
    char TransferId[OSPC_SIZE_NORSTR];
    OSPE_TRANSFER_STATUS TransferStatus;
    char DestAudioAddr[OSPC_SIZE_NORSTR];
    char DestVideoAddr[OSPC_SIZE_NORSTR];
    char ProxyEgressAddr[OSPC_SIZE_NORSTR];
    int ProviderPDD;                /* In milliseconds */
    char CNAM[OSPC_SIZE_NORSTR];
    OSPE_SERVICE ServiceType;
    char CallType[OSPC_SIZE_NORSTR];
    char CallCategory[OSPC_SIZE_NORSTR];
    char NetworkType[OSPC_SIZE_NORSTR];
    char SwitchId[OSPC_SIZE_NORID];
    char DestServiceProvider[OSPC_SIZE_NORSTR];
} OSPT_DEST;

/* Function Prototypes */
#ifdef __cplusplus
extern "C" {
#endif

    OSPT_DEST *OSPPDestNew(void);
    void OSPPDestDelete(OSPT_DEST **);
    int OSPPDestFromElement(OSPT_XML_ELEM *, OSPT_DEST **);
    void OSPPDestSetCallId(OSPT_DEST *, const unsigned char *, unsigned);
    void OSPPDestSetProtocol(OSPT_DEST *, const char *);
    void OSPPDestSetOSPVersion(OSPT_DEST *, const char *);
    OSPTBOOL OSPPDestHasNumber(OSPT_DEST *ospvDest);
    void OSPPDestSetNumber(OSPT_DEST *, const char *);
    const char *OSPPDestGetNumber(OSPT_DEST *);
    OSPTBOOL OSPPDestHasSrcNumber(OSPT_DEST *ospvDest);
    void OSPPDestSetSrcNumber(OSPT_DEST *, const char *);
    const char *OSPPDestGetSrcNumber(OSPT_DEST *);
    OSPTBOOL OSPPDestHasAddr(OSPT_DEST *);
    void OSPPDestSetAddr(OSPT_DEST *, const char *);
    const char *OSPPDestGetAddr(OSPT_DEST *);
    OSPTBOOL OSPPDestDevHasAddr(OSPT_DEST *);
    void OSPPDestDevSetAddr(OSPT_DEST *, const char *);
    const char *OSPPDestDevGetAddr(OSPT_DEST *);
    OSPTBOOL OSPPDestHasNetworkAddr(OSPT_DEST *);
    void OSPPDestSetNetworkAddr(OSPT_DEST *, const char *);
    const char *OSPPDestGetNetworkAddr(OSPT_DEST *);
    OSPTBOOL OSPPDestHasValidAfter(OSPT_DEST *);
    void OSPPDestSetValidAfter(OSPT_DEST *, OSPTTIME);
    OSPTTIME OSPPDestGetValidAfter(OSPT_DEST *);
    OSPTBOOL OSPPDestHasValidUntil(OSPT_DEST *);
    void OSPPDestSetValidUntil(OSPT_DEST *, OSPTTIME);
    OSPTTIME OSPPDestGetValidUntil(OSPT_DEST *);
    OSPTBOOL OSPPDestHasAuthority(OSPT_DEST *);
    void OSPPDestSetAuthority(OSPT_DEST *, const char *);
    OSPTBOOL OSPPDestHasCallId(OSPT_DEST *);
    OSPT_CALL_ID *OSPPDestGetCallId(OSPT_DEST *);
    OSPTBOOL OSPPDestHasToken(OSPT_DEST *);
    void OSPPDestAddToken(OSPT_DEST *, OSPT_TOKEN *);
    OSPT_TOKEN *OSPPDestFirstToken(OSPT_DEST *);
    OSPT_TOKEN *OSPPDestNextToken(OSPT_DEST *, OSPT_TOKEN *);
    OSPTBOOL OSPPDestHasLimit(OSPT_DEST *);
    unsigned OSPPDestGetLimit(OSPT_DEST *);
    void OSPPDestSetLimit(OSPT_DEST *, unsigned);
    OSPTBOOL OSPPDestHasTermCause(OSPT_DEST *, OSPE_TERM_CAUSE);
    OSPTBOOL OSPPDestHasTermCauseAny(OSPT_DEST *);
    void OSPPDestSetTermCause(OSPT_DEST *, OSPE_TERM_CAUSE, unsigned, const char *);
    OSPT_TERM_CAUSE *OSPPDestGetTermCause(OSPT_DEST *);
    unsigned OSPPDestGetTCCode(OSPT_DEST *, OSPE_TERM_CAUSE);
    const char *OSPPDestGetTCDesc(OSPT_DEST *, OSPE_TERM_CAUSE);
    void OSPPDestSetDestinationCount(OSPT_DEST *, unsigned);
    unsigned OSPPDestGetDestinationCount(OSPT_DEST *);
    void OSPPDestSetSetupAttempt(OSPT_DEST *, int);
    int OSPPDestGetSetupAttempt(OSPT_DEST *);
    OSPE_PROTOCOL_NAME OSPPDestProtocolGetPart(const char *);
    const char *OSPPDestProtocolGetName(OSPE_PROTOCOL_NAME);
    void OSPPDestProtocolFromElement(OSPT_XML_ELEM *, OSPT_DEST *);
    void OSPPSrcInfoFromElement(OSPT_XML_ELEM *, OSPT_DEST *);
    void OSPPDestInfoFromElement(OSPT_XML_ELEM *, OSPT_DEST *);
    void OSPPDestAltFromElement(OSPT_XML_ELEM *, OSPT_DEST *);
    int OSPPUsageDetailFromElement(OSPT_XML_ELEM *, OSPT_DEST *);
    void OSPPServiceFromElement(OSPT_XML_ELEM *, OSPT_DEST *);

#ifdef __cplusplus
}
#endif

#endif /* _OSPDEST_H */