Data Fields | |
| sip_msg_t * | msg |
| The SIP/HTTP through which the RPC has been received. | |
| xmlrpc_reply | reply |
| XML-RPC reply to be sent to the client. | |
| rpc_struct * | structs |
| Structures to be added to the reply. | |
| int | reply_sent |
| The flag is set after a reply is sent, this prevents a single reply being sent twice. | |
| char * | method |
| Name of the management function to be called. | |
| unsigned int | flags |
| Various flags, such as return value type. | |
| xmlDocPtr | doc |
| Pointer to the XML-RPC request document. | |
| xmlNodePtr | act_param |
| Pointer to the parameter being processed in the XML-RPC request document. | |
This is the data structure that contains all data related to the XML-RPC request being processed, such as the reply code and reason, data to be sent to the client in the reply, and so on.
There is always one context per XML-RPC request.
Definition at line 313 of file xmlrpc.c.
|
|
Pointer to the parameter being processed in the XML-RPC request document.
|
|
|
Pointer to the XML-RPC request document.
|
|
|
Various flags, such as return value type.
|
|
|
Name of the management function to be called.
|
|
|
The SIP/HTTP through which the RPC has been received.
|
|
|
XML-RPC reply to be sent to the client.
|
|
|
The flag is set after a reply is sent, this prevents a single reply being sent twice.
|
|
|
Structures to be added to the reply.
|
1.3.9.1