/usr/include/eXosip2/eX_call.h is in libexosip2-dev 3.3.0-1.1ubuntu1.
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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | /*
eXosip - This is the eXtended osip library.
Copyright (C) 2002,2003,2004,2005,2006,2007 Aymeric MOIZARD - jack@atosc.org
eXosip is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
eXosip 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 General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef ENABLE_MPATROL
#include <mpatrol.h>
#endif
#ifndef __EX_CALL_H__
#define __EX_CALL_H__
#include <osipparser2/osip_parser.h>
#include <osipparser2/sdp_message.h>
#include <time.h>
#ifdef __cplusplus
extern "C"
{
#endif
/**
* @file eX_call.h
* @brief eXosip call API
*
* This file provide the API needed to control calls. You can
* use it to:
*
* <ul>
* <li>build initial invite.</li>
* <li>send initial invite.</li>
* <li>build request within the call.</li>
* <li>send request within the call.</li>
* </ul>
*
* This API can be used to build the following messages:
* <pre>
* INVITE, INFO, OPTIONS, REFER, UPDATE, NOTIFY
* </pre>
*/
/**
* @defgroup eXosip2_call eXosip2 INVITE and Call Management
* @ingroup eXosip2_msg
* @{
*/
struct eXosip_call_t;
/**
* Set a new application context for an existing call
*
* @param id call-id or dialog-id of call
* @param reference New application context.
*/
int eXosip_call_set_reference (int id, void *reference);
/**
* Get the application context pointer for an existing call.
*
* @param cid id of the call.
* @return Application context reference
*/
void* eXosip_call_get_ref (int cid);
/**
* Build a default INVITE message for a new call.
*
* @param invite Pointer for the SIP element to hold.
* @param to SIP url for callee.
* @param from SIP url for caller.
* @param route Route header for INVITE. (optionnal)
* @param subject Subject for the call.
*/
int eXosip_call_build_initial_invite (osip_message_t ** invite, const char *to,
const char *from, const char *route,
const char *subject);
/**
* Initiate a call.
*
* @param invite SIP INVITE message to send.
*/
int eXosip_call_send_initial_invite (osip_message_t * invite);
/**
* Build a default request within a call. (INVITE, OPTIONS, INFO, REFER)
*
* @param did dialog id of call.
* @param method request type to build.
* @param request The sip request to build.
*/
int eXosip_call_build_request (int did, const char *method,
osip_message_t ** request);
/**
* Build a default ACK for a 200ok received.
*
* @param did dialog id of call.
* @param ack The sip request to build.
*/
int eXosip_call_build_ack (int did, osip_message_t ** ack);
/**
* Send the ACK for the 200ok received..
*
* @param did dialog id of call.
* @param ack SIP ACK message to send.
*/
int eXosip_call_send_ack (int did, osip_message_t * ack);
/**
* Build a default REFER for a call transfer.
*
* @param did dialog id of call.
* @param refer_to url for call transfer (Refer-To header).
* @param request The sip request to build.
*/
int eXosip_call_build_refer (int did, const char *refer_to,
osip_message_t ** request);
/**
* Build a default INFO within a call.
*
* @param did dialog id of call.
* @param request The sip request to build.
*/
int eXosip_call_build_info (int did, osip_message_t ** request);
/**
* Build a default OPTIONS within a call.
*
* @param did dialog id of call.
* @param request The sip request to build.
*/
int eXosip_call_build_options (int did, osip_message_t ** request);
/**
* Build a default UPDATE within a call.
*
* @param did dialog id of call.
* @param request The sip request to build.
*/
int eXosip_call_build_update (int did, osip_message_t ** request);
/**
* Build a default NOTIFY within a call.
*
* @param did dialog id of call.
* @param subscription_status Subscription status of the request.
* @param request The sip request to build.
*/
int eXosip_call_build_notify (int did, int subscription_status,
osip_message_t ** request);
/**
* send the request within call. (INVITE, OPTIONS, INFO, REFER, UPDATE)
*
* @param did dialog id of call.
* @param request The sip request to send.
*/
int eXosip_call_send_request (int did, osip_message_t * request);
/**
* Build default Answer for request.
*
* @param tid id of transaction to answer.
* @param status Status code to use.
* @param answer The sip answer to build.
*/
int eXosip_call_build_answer (int tid, int status, osip_message_t ** answer);
/**
* Send Answer for invite.
*
* @param tid id of transaction to answer.
* @param status response status if answer is NULL. (not allowed for 2XX)
* @param answer The sip answer to send.
*/
int eXosip_call_send_answer (int tid, int status, osip_message_t * answer);
/**
* Terminate a call.
* send CANCEL, BYE or 603 Decline.
*
* @param cid call id of call.
* @param did dialog id of call.
*/
int eXosip_call_terminate (int cid, int did);
/**
* Build a PRACK for invite.
*
* @param tid id of the invite transaction.
* @param prack The sip prack to build.
*/
int eXosip_call_build_prack (int tid, osip_message_t ** prack);
/**
* Send a PRACK for invite.
*
* @param tid id of the invite transaction.
* @param prack The sip prack to send.
*/
int eXosip_call_send_prack (int tid, osip_message_t * prack);
/**
* Send a NOTIFY containing the information about a call transfer.
*
* THIS METHOD WILL BE REPLACED or REMOVED, please use the
* new API to build NOTIFY.
*
* @param did dialog id of call.
* @param subscription_status the subscription status.
* @param body the body to attach to NOTIFY.
*/
int eXosip_transfer_send_notify (int did, int subscription_status, char *body);
/**
* Get Refer-To header with Replace parameter from dialog.
*
* @param did id of the dialog.
* @param refer_to buffer to be filled with refer-to info.
* @param refer_to_len size of refer_to buffer.
*/
int eXosip_call_get_referto (int did, char *refer_to, size_t refer_to_len);
/**
* Return did (or cid) for the replace header.
*
* @param replaces buffer to be filled with refer-to info.
*/
int eXosip_call_find_by_replaces (char *replaces);
/** @} */
#ifdef __cplusplus
}
#endif
#endif
|