|
HOME
SIP/media Features
High Performance SIP
Small Footprint SIP
Symbian Port
FAQ
Documentation
Licensing
Download
Development (Trac)
Projects using pjsip
Mailing List
Open Source Links
About: PJLIB, PJLIB-UTIL, PJSIP, and PJMEDIA are created by: Benny Prijono <bennylp pjsip.org>
|
|
Home --> Documentations --> PJSIP Reference
Detailed Description
|
Data Structures |
| struct | pjsua_call_info |
Defines |
| #define | PJSUA_MAX_CALLS 32 |
| #define | PJSUA_XFER_NO_REQUIRE_REPLACES 1 |
Enumerations |
| enum | pjsua_call_media_status {
PJSUA_CALL_MEDIA_NONE,
PJSUA_CALL_MEDIA_ACTIVE,
PJSUA_CALL_MEDIA_LOCAL_HOLD,
PJSUA_CALL_MEDIA_REMOTE_HOLD,
PJSUA_CALL_MEDIA_ERROR
} |
Functions |
| unsigned | pjsua_call_get_max_count (void) |
| unsigned | pjsua_call_get_count (void) |
| pj_status_t | pjsua_enum_calls (pjsua_call_id ids[], unsigned *count) |
| pj_status_t | pjsua_call_make_call (pjsua_acc_id acc_id, const pj_str_t *dst_uri, unsigned options, void *user_data, const pjsua_msg_data *msg_data, pjsua_call_id *p_call_id) |
| pj_bool_t | pjsua_call_is_active (pjsua_call_id call_id) |
| pj_bool_t | pjsua_call_has_media (pjsua_call_id call_id) |
| pjmedia_session * | pjsua_call_get_media_session (pjsua_call_id call_id) |
| pjmedia_transport * | pjsua_call_get_media_transport (pjsua_call_id cid) |
| pjsua_conf_port_id | pjsua_call_get_conf_port (pjsua_call_id call_id) |
| pj_status_t | pjsua_call_get_info (pjsua_call_id call_id, pjsua_call_info *info) |
| pj_status_t | pjsua_call_set_user_data (pjsua_call_id call_id, void *user_data) |
| void * | pjsua_call_get_user_data (pjsua_call_id call_id) |
| pj_status_t | pjsua_call_get_rem_nat_type (pjsua_call_id call_id, pj_stun_nat_type *p_type) |
| pj_status_t | pjsua_call_answer (pjsua_call_id call_id, unsigned code, const pj_str_t *reason, const pjsua_msg_data *msg_data) |
| pj_status_t | pjsua_call_hangup (pjsua_call_id call_id, unsigned code, const pj_str_t *reason, const pjsua_msg_data *msg_data) |
| pj_status_t | pjsua_call_process_redirect (pjsua_call_id call_id, pjsip_redirect_op cmd) |
| pj_status_t | pjsua_call_set_hold (pjsua_call_id call_id, const pjsua_msg_data *msg_data) |
| pj_status_t | pjsua_call_reinvite (pjsua_call_id call_id, pj_bool_t unhold, const pjsua_msg_data *msg_data) |
| pj_status_t | pjsua_call_update (pjsua_call_id call_id, unsigned options, const pjsua_msg_data *msg_data) |
| pj_status_t | pjsua_call_xfer (pjsua_call_id call_id, const pj_str_t *dest, const pjsua_msg_data *msg_data) |
| pj_status_t | pjsua_call_xfer_replaces (pjsua_call_id call_id, pjsua_call_id dest_call_id, unsigned options, const pjsua_msg_data *msg_data) |
| pj_status_t | pjsua_call_dial_dtmf (pjsua_call_id call_id, const pj_str_t *digits) |
| pj_status_t | pjsua_call_send_im (pjsua_call_id call_id, const pj_str_t *mime_type, const pj_str_t *content, const pjsua_msg_data *msg_data, void *user_data) |
| pj_status_t | pjsua_call_send_typing_ind (pjsua_call_id call_id, pj_bool_t is_typing, const pjsua_msg_data *msg_data) |
| pj_status_t | pjsua_call_send_request (pjsua_call_id call_id, const pj_str_t *method, const pjsua_msg_data *msg_data) |
| void | pjsua_call_hangup_all (void) |
| pj_status_t | pjsua_call_dump (pjsua_call_id call_id, pj_bool_t with_media, char *buffer, unsigned maxlen, const char *indent) |
Define Documentation
| #define PJSUA_MAX_CALLS 32 |
Maximum simultaneous calls.
| #define PJSUA_XFER_NO_REQUIRE_REPLACES 1 |
Flag to indicate that "Require: replaces" should not be put in the outgoing INVITE request caused by REFER request created by pjsua_call_xfer_replaces().
Enumeration Type Documentation
This enumeration specifies the media status of a call, and it's part of pjsua_call_info structure. - Enumerator:
-
| PJSUA_CALL_MEDIA_NONE |
Call currently has no media |
| PJSUA_CALL_MEDIA_ACTIVE |
The media is active |
| PJSUA_CALL_MEDIA_LOCAL_HOLD |
The media is currently put on hold by local endpoint |
| PJSUA_CALL_MEDIA_REMOTE_HOLD |
The media is currently put on hold by remote endpoint |
| PJSUA_CALL_MEDIA_ERROR |
The media has reported error (e.g. ICE negotiation) |
Function Documentation
| unsigned pjsua_call_get_max_count |
( |
void |
|
) |
|
Get maximum number of calls configured in pjsua.
- Returns:
- Maximum number of calls configured.
| unsigned pjsua_call_get_count |
( |
void |
|
) |
|
Get number of currently active calls.
- Returns:
- Number of currently active calls.
Enumerate all active calls. Application may then query the information and state of each call by calling pjsua_call_get_info().
- Parameters:
-
| ids | Array of account IDs to be initialized. |
| count | In input, specifies the maximum number of elements. On return, it contains the actual number of elements. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Make outgoing call to the specified URI using the specified account.
- Parameters:
-
| acc_id | The account to be used. |
| dst_uri | URI to be put in the To header (normally is the same as the target URI). |
| options | Options (must be zero at the moment). |
| user_data | Arbitrary user data to be attached to the call, and can be retrieved later. |
| msg_data | Optional headers etc to be added to outgoing INVITE request, or NULL if no custom header is desired. |
| p_call_id | Pointer to receive call identification. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Check if the specified call has active INVITE session and the INVITE session has not been disconnected.
- Parameters:
-
| call_id | Call identification. |
- Returns:
- Non-zero if call is active.
Check if call has an active media session.
- Parameters:
-
| call_id | Call identification. |
- Returns:
- Non-zero if yes.
Retrieve the media session associated with this call. Note that the media session may not be available depending on the current call's media status (the pjsua_call_media_status information in pjsua_call_info). Application may use the media session to retrieve more detailed information about the call's media.
- Parameters:
-
| call_id | Call identification. |
- Returns:
- Call media session.
Retrieve the media transport instance that is used for this call. Application may use the media transport to query more detailed information about the media transport.
- Parameters:
-
| cid | Call identification (the call_id). |
- Returns:
- Call media transport.
Get the conference port identification associated with the call.
- Parameters:
-
| call_id | Call identification. |
- Returns:
- Conference port ID, or PJSUA_INVALID_ID when the media has not been established or is not active.
Obtain detail information about the specified call.
- Parameters:
-
| call_id | Call identification. |
| info | Call info to be initialized. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Attach application specific data to the call. Application can then inspect this data by calling pjsua_call_get_user_data().
- Parameters:
-
| call_id | Call identification. |
| user_data | Arbitrary data to be attached to the call. |
- Returns:
- The user data.
Get user data attached to the call, which has been previously set with pjsua_call_set_user_data().
- Parameters:
-
| call_id | Call identification. |
- Returns:
- The user data.
Get the NAT type of remote's endpoint. This is a proprietary feature of PJSUA-LIB which sends its NAT type in the SDP when nat_type_in_sdp is set in pjsua_config.
This function can only be called after SDP has been received from remote, which means for incoming call, this function can be called as soon as call is received as long as incoming call contains SDP, and for outgoing call, this function can be called only after SDP is received (normally in 200/OK response to INVITE). As a general case, application should call this function after or in on_call_media_state() callback.
- Parameters:
-
| call_id | Call identification. |
| p_type | Pointer to store the NAT type. Application can then retrieve the string description of the NAT type by calling pj_stun_get_nat_name(). |
- Returns:
- PJ_SUCCESS on success.
- See also:
- pjsua_get_nat_type(), nat_type_in_sdp
Send response to incoming INVITE request. Depending on the status code specified as parameter, this function may send provisional response, establish the call, or terminate the call.
- Parameters:
-
| call_id | Incoming call identification. |
| code | Status code, (100-699). |
| reason | Optional reason phrase. If NULL, default text will be used. |
| msg_data | Optional list of headers etc to be added to outgoing response message. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Hangup call by using method that is appropriate according to the call state. This function is different than answering the call with 3xx-6xx response (with pjsua_call_answer()), in that this function will hangup the call regardless of the state and role of the call, while pjsua_call_answer() only works with incoming calls on EARLY state.
- Parameters:
-
| call_id | Call identification. |
| code | Optional status code to be sent when we're rejecting incoming call. If the value is zero, "603/Decline" will be sent. |
| reason | Optional reason phrase to be sent when we're rejecting incoming call. If NULL, default text will be used. |
| msg_data | Optional list of headers etc to be added to outgoing request/response message. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Accept or reject redirection response. Application MUST call this function after it signaled PJSIP_REDIRECT_PENDING in the on_call_redirected() callback, to notify the call whether to accept or reject the redirection to the current target. Application can use the combination of PJSIP_REDIRECT_PENDING command in on_call_redirected() callback and this function to ask for user permission before redirecting the call.
Note that if the application chooses to reject or stop redirection (by using PJSIP_REDIRECT_REJECT or PJSIP_REDIRECT_STOP respectively), the call disconnection callback will be called before this function returns. And if the application rejects the target, the on_call_redirected() callback may also be called before this function returns if there is another target to try.
- Parameters:
-
| call_id | The call ID. |
| cmd | Redirection operation to be applied to the current target. The semantic of this argument is similar to the description in the on_call_redirected() callback, except that the PJSIP_REDIRECT_PENDING is not accepted here. |
- Returns:
- PJ_SUCCESS on successful operation.
Put the specified call on hold. This will send re-INVITE with the appropriate SDP to inform remote that the call is being put on hold. The final status of the request itself will be reported on the on_call_media_state() callback, which inform the application that the media state of the call has changed.
- Parameters:
-
| call_id | Call identification. |
| msg_data | Optional message components to be sent with the request. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Send re-INVITE to release hold. The final status of the request itself will be reported on the on_call_media_state() callback, which inform the application that the media state of the call has changed.
- Parameters:
-
| call_id | Call identification. |
| unhold | If this argument is non-zero and the call is locally held, this will release the local hold. |
| msg_data | Optional message components to be sent with the request. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Send UPDATE request.
- Parameters:
-
| call_id | Call identification. |
| options | Must be zero for now. |
| msg_data | Optional message components to be sent with the request. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Initiate call transfer to the specified address. This function will send REFER request to instruct remote call party to initiate a new INVITE session to the specified destination/target.
If application is interested to monitor the successfulness and the progress of the transfer request, it can implement on_call_transfer_status() callback which will report the progress of the call transfer request.
- Parameters:
-
| call_id | The call id to be transfered. |
| dest | Address of new target to be contacted. |
| msg_data | Optional message components to be sent with the request. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Initiate attended call transfer. This function will send REFER request to instruct remote call party to initiate new INVITE session to the URL of dest_call_id. The party at dest_call_id then should "replace" the call with us with the new call from the REFER recipient.
- Parameters:
-
| call_id | The call id to be transfered. |
| dest_call_id | The call id to be replaced. |
| options | Application may specify PJSUA_XFER_NO_REQUIRE_REPLACES to suppress the inclusion of "Require: replaces" in the outgoing INVITE request created by the REFER request. |
| msg_data | Optional message components to be sent with the request. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Send DTMF digits to remote using RFC 2833 payload formats.
- Parameters:
-
| call_id | Call identification. |
| digits | DTMF string digits to be sent. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Send instant messaging inside INVITE session.
- Parameters:
-
| call_id | Call identification. |
| mime_type | Optional MIME type. If NULL, then "text/plain" is assumed. |
| content | The message content. |
| msg_data | Optional list of headers etc to be included in outgoing request. The body descriptor in the msg_data is ignored. |
| user_data | Optional user data, which will be given back when the IM callback is called. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Send IM typing indication inside INVITE session.
- Parameters:
-
| call_id | Call identification. |
| is_typing | Non-zero to indicate to remote that local person is currently typing an IM. |
| msg_data | Optional list of headers etc to be included in outgoing request. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
Send arbitrary request with the call. This is useful for example to send INFO request. Note that application should not use this function to send requests which would change the invite session's state, such as re-INVITE, UPDATE, PRACK, and BYE.
- Parameters:
-
| call_id | Call identification. |
| method | SIP method of the request. |
| msg_data | Optional message body and/or list of headers to be included in outgoing request. |
- Returns:
- PJ_SUCCESS on success, or the appropriate error code.
| void pjsua_call_hangup_all |
( |
void |
|
) |
|
Dump call and media statistics to string.
- Parameters:
-
| call_id | Call identification. |
| with_media | Non-zero to include media information too. |
| buffer | Buffer where the statistics are to be written to. |
| maxlen | Maximum length of buffer. |
| indent | Spaces for left indentation. |
- Returns:
- PJ_SUCCESS on success.
PJSIP Open Source, high performance, small footprint, and very very portable SIP stack
Copyright (C) 2006-2008 Teluu Inc.
|
|