SIP Witch 1.9.15
|
Functions | |
int | eXosip_options_build_request (struct eXosip_t *excontext, osip_message_t **options, const char *to, const char *from, const char *route) |
Build a default OPTIONS message. More... | |
int | eXosip_options_send_request (struct eXosip_t *excontext, osip_message_t *options) |
Send an OPTIONS request. More... | |
int | eXosip_options_build_answer (struct eXosip_t *excontext, int tid, int status, osip_message_t **answer) |
Build answer for an OPTIONS request. More... | |
int | eXosip_options_send_answer (struct eXosip_t *excontext, int tid, int status, osip_message_t *answer) |
Send answer for an OPTIONS request. More... | |
int eXosip_options_build_answer | ( | struct eXosip_t * | excontext, |
int | tid, | ||
int | status, | ||
osip_message_t ** | answer | ||
) |
#include <eX_options.h>
Build answer for an OPTIONS request.
excontext | eXosip_t instance. |
tid | id of OPTIONS transaction. |
status | status for SIP answer to build. |
answer | The SIP answer to build. |
int eXosip_options_build_request | ( | struct eXosip_t * | excontext, |
osip_message_t ** | options, | ||
const char * | to, | ||
const char * | from, | ||
const char * | route | ||
) |
#include <eX_options.h>
Build a default OPTIONS message.
excontext | eXosip_t instance. |
options | Pointer for the SIP request to build. |
to | SIP url for callee. |
from | SIP url for caller. |
route | Route header for INVITE. (optional) |
int eXosip_options_send_answer | ( | struct eXosip_t * | excontext, |
int | tid, | ||
int | status, | ||
osip_message_t * | answer | ||
) |
#include <eX_options.h>
Send answer for an OPTIONS request.
excontext | eXosip_t instance. |
tid | id of OPTIONS transaction. |
status | status for SIP answer to send. |
answer | The SIP answer to send. (default will be sent if NULL) |
int eXosip_options_send_request | ( | struct eXosip_t * | excontext, |
osip_message_t * | options | ||
) |
#include <eX_options.h>
Send an OPTIONS request.
excontext | eXosip_t instance. |
options | SIP OPTIONS message to send. |