Request-Disposition = ( "Request-Disposition" | "d" ) HCOLON directive *(COMMA directive) directive = proxy-directive / cancel-directive / fork-directive / recurse-directive / parallel-directive / queue-directive) proxy-directive = "proxy" / "redirect" cancel-directive = "cancel" / "no-cancel" fork-directive = "fork" / "no-fork" recurse-directive = "recurse" / "no-recurse" parallel-directive = "parallel" / "sequential" queue-directive = "queue" / "no-queue"
The parsed Request-Disposition header is stored in sip_request_disposition_t structure.
|
|
Initializer for structure sip_request_disposition_t. A static sip_request_disposition_t structure for Request-Disposition header must be initialized with the SIP_REQUEST_DISPOSITION_INIT() macro. For instance, |
|
|
Tag list item for pointer to a Request-Disposition header structure sip_request_disposition_t. The SIPTAG_REQUEST_DISPOSITION() macro is used to include a tag item with a pointer to a sip_request_disposition_t structure in a tag list.
|
|
|
Tag list item for string with Request-Disposition header value. The SIPTAG_REQUEST_DISPOSITION_STR() macro is used to include a tag item with a string containing value of a sip_request_disposition_t header in a tag list.
The corresponding tag taking reference parameter is SIPTAG_REQUEST_DISPOSITION_STR_REF(). |
|
|
The structure sip_request_disposition_t contains representation of Request-Disposition header. The sip_request_disposition_t is defined as follows: typedef struct sip_request_disposition_s { sip_common_t rd_common[1]; // Common fragment info sip_unknown_t *rd_next; // Link to next (dummy) msg_param_t *rd_items; // List of directives } sip_request_disposition_t; |
|
|
Test if header object is instance of sip_request_disposition_t. Check if the header class is an instance of Request-Disposition header object and return true (nonzero), otherwise return false (zero).
|
|
||||||||||||
|
Copy a list of Request-Disposition header header structures sip_request_disposition_t.
The function sip_request_disposition_copy() copies a header structure hdr. If the header structure hdr contains a reference (
|
|
||||||||||||
|
Duplicate a list of Request-Disposition header header structures sip_request_disposition_t.
Duplicate a header structure hdr. If the header structure hdr contains a reference (
|
|
||||||||||||||||
|
Make a Request-Disposition header from formatting result. Make a new sip_request_disposition_t object using formatting result as its value. The function first prints the arguments according to the format fmt specified. Then it allocates a new header structure, and parses the formatting result to the structure sip_request_disposition_t.
|
|
|
Initialize a structure sip_request_disposition_t. An sip_request_disposition_t structure for Request-Disposition header can be initialized with the sip_request_disposition_init() function/macro. For instance, |
|
||||||||||||
|
Make a Request-Disposition header structure sip_request_disposition_t. The function sip_request_disposition_make() makes a new sip_request_disposition_t header structure. It allocates a new header structure, and decodes the string s as the value of the structure.
|
|
|
Header class for Request-Disposition header. The header class sip_request_disposition_class defines how a SIP Request-Disposition header is parsed and printed. It also contains methods used by SIP parser and other functions to manipulate the sip_request_disposition_t header structure. |