WARNING: The online documentation has moved to https://docs.pjsip.org.

Visit the new documentation at https://docs.pjsip.org:

BLOG | DOCUMENTATION | GITHUB

Home --> Documentations --> PJSIP Reference

SIP Message Summary and Message Waiting Indication (RFC 3842)

Support for SIP MWI Extension (RFC 3842) More...

Functions

pj_status_t pjsip_mwi_init_module (pjsip_endpoint *endpt, pjsip_module *mod_evsub)
 
pjsip_modulepjsip_mwi_instance (void)
 
pj_status_t pjsip_mwi_create_uac (pjsip_dialog *dlg, const pjsip_evsub_user *user_cb, unsigned options, pjsip_evsub **p_evsub)
 
pj_status_t pjsip_mwi_create_uas (pjsip_dialog *dlg, const pjsip_evsub_user *user_cb, pjsip_rx_data *rdata, pjsip_evsub **p_evsub)
 
pj_status_t pjsip_mwi_terminate (pjsip_evsub *sub, pj_bool_t notify)
 
pj_status_t pjsip_mwi_initiate (pjsip_evsub *sub, pj_uint32_t expires, pjsip_tx_data **p_tdata)
 
pj_status_t pjsip_mwi_accept (pjsip_evsub *sub, pjsip_rx_data *rdata, int st_code, const pjsip_hdr *hdr_list)
 
pj_status_t pjsip_mwi_notify (pjsip_evsub *sub, pjsip_evsub_state state, const pj_str_t *state_str, const pj_str_t *reason, const pjsip_media_type *mime_type, const pj_str_t *body, pjsip_tx_data **p_tdata)
 
pj_status_t pjsip_mwi_current_notify (pjsip_evsub *sub, pjsip_tx_data **p_tdata)
 
pj_status_t pjsip_mwi_send_request (pjsip_evsub *sub, pjsip_tx_data *tdata)
 

Detailed Description

This module implements RFC 3842: A Message Summary and Message Waiting Indication Event Package for the Session Initiation Protocol (SIP). It uses the SIP Event Notification framework (evsub.h) and extends the framework by implementing "message-summary" event package.

Function Documentation

◆ pjsip_mwi_init_module()

pj_status_t pjsip_mwi_init_module ( pjsip_endpoint endpt,
pjsip_module mod_evsub 
)

Initialize the MWI module and register it as endpoint module and package to the event subscription module.

Parameters
endptThe endpoint instance.
mod_evsubThe event subscription module instance.
Returns
PJ_SUCCESS if the module is successfully initialized and registered to both endpoint and the event subscription module.

◆ pjsip_mwi_instance()

pjsip_module * pjsip_mwi_instance ( void  )

Get the MWI module instance.

Returns
The MWI module instance.

◆ pjsip_mwi_create_uac()

pj_status_t pjsip_mwi_create_uac ( pjsip_dialog dlg,
const pjsip_evsub_user user_cb,
unsigned  options,
pjsip_evsub **  p_evsub 
)

Create MWI client subscription session.

Parameters
dlgThe underlying dialog to use.
user_cbPointer to callbacks to receive MWI subscription events.
optionsOption flags. Currently only PJSIP_EVSUB_NO_EVENT_ID is recognized.
p_evsubPointer to receive the MWI subscription session.
Returns
PJ_SUCCESS on success.

◆ pjsip_mwi_create_uas()

pj_status_t pjsip_mwi_create_uas ( pjsip_dialog dlg,
const pjsip_evsub_user user_cb,
pjsip_rx_data rdata,
pjsip_evsub **  p_evsub 
)

Create MWI server subscription session.

Parameters
dlgThe underlying dialog to use.
user_cbPointer to callbacks to receive MWI subscription events.
rdataThe incoming SUBSCRIBE request that creates the event subscription.
p_evsubPointer to receive the MWI subscription session.
Returns
PJ_SUCCESS on success.

◆ pjsip_mwi_terminate()

pj_status_t pjsip_mwi_terminate ( pjsip_evsub sub,
pj_bool_t  notify 
)

Forcefully destroy the MWI subscription. This function should only be called on special condition, such as when the subscription initialization has failed. For other conditions, application MUST terminate the subscription by sending the appropriate un(SUBSCRIBE) or NOTIFY.

Parameters
subThe MWI subscription.
notifySpecify whether the state notification callback should be called.
Returns
PJ_SUCCESS if subscription session has been destroyed.

◆ pjsip_mwi_initiate()

pj_status_t pjsip_mwi_initiate ( pjsip_evsub sub,
pj_uint32_t  expires,
pjsip_tx_data **  p_tdata 
)

Call this function to create request to initiate MWI subscription, to refresh subcription, or to request subscription termination.

Parameters
subClient subscription instance.
expiresSubscription expiration. If the value is set to zero, this will request unsubscription. If the value is PJSIP_EXPIRES_NOT_SPECIFIED, default expiration as defined by the package will be used.
p_tdataPointer to receive the request.
Returns
PJ_SUCCESS on success.

◆ pjsip_mwi_accept()

pj_status_t pjsip_mwi_accept ( pjsip_evsub sub,
pjsip_rx_data rdata,
int  st_code,
const pjsip_hdr hdr_list 
)

Accept the incoming subscription request by sending 2xx response to incoming SUBSCRIBE request.

Parameters
subServer subscription instance.
rdataThe incoming subscription request message.
st_codeStatus code, which MUST be final response.
hdr_listOptional list of headers to be added in the response.
Returns
PJ_SUCCESS on success.

◆ pjsip_mwi_notify()

pj_status_t pjsip_mwi_notify ( pjsip_evsub sub,
pjsip_evsub_state  state,
const pj_str_t state_str,
const pj_str_t reason,
const pjsip_media_type mime_type,
const pj_str_t body,
pjsip_tx_data **  p_tdata 
)

For notifier, create NOTIFY request to subscriber, and set the state of the subscription.

Parameters
subThe server subscription (notifier) instance.
stateNew state to set.
state_strThe state string name, if state contains value other than active, pending, or terminated. Otherwise this argument is ignored.
reasonSpecify reason if new state is terminated, otherwise put NULL.
mime_typeMIME type/content type of the message body.
bodyMessage body to be included in the NOTIFY request.
p_tdataPointer to receive the request.
Returns
PJ_SUCCESS on success.

◆ pjsip_mwi_current_notify()

pj_status_t pjsip_mwi_current_notify ( pjsip_evsub sub,
pjsip_tx_data **  p_tdata 
)

Create NOTIFY request containing message body from the last NOITFY message created.

Parameters
subServer subscription object.
p_tdataPointer to receive request.
Returns
PJ_SUCCESS on success.

◆ pjsip_mwi_send_request()

pj_status_t pjsip_mwi_send_request ( pjsip_evsub sub,
pjsip_tx_data tdata 
)

Send request message that was previously created with initiate(), notify(), or current_notify(). Application may also send request created with other functions, e.g. authentication. But the request MUST be either request that creates/refresh subscription or NOTIFY request.

Parameters
subThe subscription object.
tdataRequest message to be sent.
Returns
PJ_SUCCESS on success.

References PJ_END_DECL.

 


PJSIP Open Source, high performance, small footprint, and very very portable SIP stack
Copyright (C) 2006-2008 Teluu Inc.