Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include "gwlib/gwlib.h"
Go to the source code of this file.
Typedefs | |
typedef struct xmlrpc_document | XMLRPCDocument |
typedef struct xmlrpc_value | XMLRPCValue |
typedef struct xmlrpc_scalar | XMLRPCScalar |
Enumerations | |
enum | { xr_undefined, xr_scalar, xr_array, xr_struct, xr_string, xr_int, xr_bool, xr_double, xr_date, xr_base64, xr_methodcall, xr_methodresponse } |
enum | { XMLRPC_COMPILE_OK, XMLRPC_XMLPARSE_FAILED, XMLRPC_PARSING_FAILED } |
#define xmlrpc_add_call_scalar | ( | call, | |
type, | |||
arg | |||
) | xmlrpc_doc_add_scalar(call, xr_methodcall, type, arg) |
#define xmlrpc_add_call_value | ( | call, | |
value | |||
) | xmlrpc_doc_add_value(call, xr_methodcall, value) |
#define xmlrpc_add_param | ( | xrdoc, | |
value | |||
) | xmlrpc_doc_add_value(xrdoc, xr_undefined, value) |
#define xmlrpc_add_response_scalar | ( | response, | |
type, | |||
arg | |||
) | xmlrpc_doc_add_scalar(response, xr_methodresponse, type, arg) |
#define xmlrpc_add_response_value | ( | response, | |
value | |||
) | xmlrpc_doc_add_value(response, xr_methodresponse, value) |
#define xmlrpc_add_scalar_param | ( | xrdoc, | |
type, | |||
arg | |||
) | xmlrpc_doc_add_scalar(xrdoc, xr_undefined, type, arg) |
#define xmlrpc_create_call | ( | method | ) | xmlrpc_doc_create_call(method) |
#define xmlrpc_create_faultresponse | ( | faultcode, | |
faultstring | |||
) | xmlrpc_doc_create_faultresponse(faultcode, faultstring) |
#define xmlrpc_create_response | ( | ) | xmlrpc_doc_create_response() |
#define xmlrpc_destroy_call | ( | call | ) | xmlrpc_doc_destroy(call, xr_methodcall) |
Definition at line 165 of file xmlrpc.h.
Referenced by main(), and smsbox_xmlrpc_post().
#define xmlrpc_destroy_response | ( | response | ) | xmlrpc_doc_destroy(response, xr_methodresponse) |
#define xmlrpc_get_base64_value | ( | value | ) | xmlrpc_scalar_get_base64(xmlrpc_value_get_content(value)) |
#define xmlrpc_get_double_value | ( | value | ) | xmlrpc_scalar_get_double(xmlrpc_value_get_content(value)) |
#define xmlrpc_get_int_value | ( | value | ) | xmlrpc_scalar_get_int(xmlrpc_value_get_content(value)) |
#define xmlrpc_get_scalar_value_type | ( | value | ) | xmlrpc_scalar_get_type(xmlrpc_value_get_content(value)) |
Definition at line 483 of file xmlrpc.h.
Referenced by xmlrpc_value_get_type_smart().
#define xmlrpc_get_string_value | ( | value | ) | xmlrpc_scalar_get_string(xmlrpc_value_get_content(value)) |
#define xmlrpc_parse_call | ( | post_body | ) | xmlrpc_doc_parse(post_body, xr_methodcall) |
Definition at line 161 of file xmlrpc.h.
Referenced by main(), and smsbox_xmlrpc_post().
#define xmlrpc_parse_response | ( | post_body | ) | xmlrpc_doc_parse(post_body, xr_methodresponse) |
Definition at line 216 of file xmlrpc.h.
Referenced by receive_reply().
#define xmlrpc_print_call | ( | call | ) | xmlrpc_doc_print(call, xr_methodcall, 0) |
#define xmlrpc_print_response | ( | response | ) | xmlrpc_doc_print(response, xr_methodresponse, 0) |
#define xmlrpc_scalar_get_base64 | ( | scalar | ) | octstr_duplicate((Octstr *)xmlrpc_scalar_get_content(scalar, xr_base64)) |
#define xmlrpc_scalar_get_bool | ( | scalar | ) | *(int *)xmlrpc_scalar_get_content(scalar, xr_bool) |
#define xmlrpc_scalar_get_date | ( | scalar | ) | octstr_duplicate((Octstr *)xmlrpc_scalar_get_content(scalar, xr_date)) |
#define xmlrpc_scalar_get_double | ( | scalar | ) | *(double *)xmlrpc_scalar_get_content(scalar, xr_double) |
#define xmlrpc_scalar_get_int | ( | scalar | ) | *(long *)xmlrpc_scalar_get_content(scalar, xr_int) |
Definition at line 449 of file xmlrpc.h.
Referenced by parse_fault_element().
#define xmlrpc_scalar_get_string | ( | scalar | ) | octstr_duplicate((Octstr *)xmlrpc_scalar_get_content(scalar, xr_string)) |
Definition at line 458 of file xmlrpc.h.
Referenced by parse_fault_element().
#define xmlrpc_send_call | ( | call, | |
http_ref, | |||
url, | |||
headers, | |||
ref | |||
) | xmlrpc_doc_send(call, xr_methodcall, http_ref, url, headers, ref) |
Definition at line 197 of file xmlrpc.h.
Referenced by start_request().
#define xmlrpc_send_response | ( | response, | |
http_ref, | |||
url, | |||
headers, | |||
ref | |||
) | xmlrpc_doc_send(call, xr_methodresponse, http_ref, url, headers, ref) |
typedef struct xmlrpc_document XMLRPCDocument |
typedef struct xmlrpc_scalar XMLRPCScalar |
typedef struct xmlrpc_value XMLRPCValue |
anonymous enum |
Enumerator | |
---|---|
xr_undefined | |
xr_scalar | |
xr_array | |
xr_struct | |
xr_string | |
xr_int | |
xr_bool | |
xr_double | |
xr_date | |
xr_base64 | |
xr_methodcall | |
xr_methodresponse |
Definition at line 86 of file xmlrpc.h.
anonymous enum |
Enumerator | |
---|---|
XMLRPC_COMPILE_OK | |
XMLRPC_XMLPARSE_FAILED | |
XMLRPC_PARSING_FAILED |
int xmlrpc_add_element | ( | XMLRPCValue * | xrarray, |
XMLRPCValue * | value | ||
) |
Definition at line 1218 of file xmlrpc.c.
References gwlist_produce(), xmlrpc_value::v_array, xmlrpc_value::v_type, and xr_array.
Referenced by xmlrpc_add_element_scalar().
int xmlrpc_add_element_scalar | ( | XMLRPCValue * | xrarray, |
int | type, | ||
void * | arg | ||
) |
Definition at line 1227 of file xmlrpc.c.
References type, xmlrpc_add_element(), xmlrpc_create_scalar_value(), and xmlrpc_value_destroy().
int xmlrpc_add_member | ( | XMLRPCValue * | xrstruct, |
Octstr * | name, | ||
XMLRPCValue * | value | ||
) |
Definition at line 1121 of file xmlrpc.c.
References dict_put_once(), name, xmlrpc_value::v_struct, xmlrpc_value::v_type, and xr_struct.
Referenced by xmlrpc_add_member_scalar().
int xmlrpc_add_member_scalar | ( | XMLRPCValue * | xrstruct, |
Octstr * | name, | ||
int | type, | ||
void * | arg | ||
) |
Definition at line 1130 of file xmlrpc.c.
References name, type, xmlrpc_add_member(), xmlrpc_create_scalar_value(), and xmlrpc_value_destroy().
int xmlrpc_count_elements | ( | XMLRPCValue * | xrarray | ) |
Definition at line 1210 of file xmlrpc.c.
References gwlist_len(), xmlrpc_value::v_array, xmlrpc_value::v_type, and xr_array.
long xmlrpc_count_members | ( | XMLRPCValue * | xrstruct | ) |
Definition at line 1114 of file xmlrpc.c.
References dict_key_count(), xmlrpc_value::v_struct, xmlrpc_value::v_type, and xr_struct.
Referenced by parse_fault_element().
int xmlrpc_count_params | ( | XMLRPCDocument * | xrdoc | ) |
Definition at line 1064 of file xmlrpc.c.
References xmlrpc_document::d_type, gwlist_len(), xmlrpc_document::methodcall, xmlrpc_document::methodresponse, xmlrpc_methodresponse::param, xmlrpc_methodcall::params, xr_methodcall, and xr_methodresponse.
XMLRPCValue* xmlrpc_create_array_value | ( | void | ) |
Definition at line 1201 of file xmlrpc.c.
References gwlist_create, xmlrpc_value::v_array, xmlrpc_value::v_type, xmlrpc_value_create(), and xr_array.
XMLRPCValue* xmlrpc_create_double_value | ( | double | val | ) |
Definition at line 1300 of file xmlrpc.c.
References xmlrpc_create_scalar_value(), and xr_double.
XMLRPCValue* xmlrpc_create_int_value | ( | long | val | ) |
Definition at line 1305 of file xmlrpc.c.
References xmlrpc_create_scalar_value(), and xr_int.
XMLRPCValue* xmlrpc_create_scalar_value | ( | int | type, |
void * | arg | ||
) |
Definition at line 1291 of file xmlrpc.c.
References type, xmlrpc_value::v_scalar, xmlrpc_value::v_type, xmlrpc_scalar_create(), xmlrpc_value_create(), and xr_scalar.
Referenced by xmlrpc_add_element_scalar(), xmlrpc_add_member_scalar(), xmlrpc_create_double_value(), xmlrpc_create_int_value(), xmlrpc_create_string_value(), and xmlrpc_doc_add_scalar().
XMLRPCValue* xmlrpc_create_string_value | ( | Octstr * | val | ) |
Definition at line 1310 of file xmlrpc.c.
References xmlrpc_create_scalar_value(), and xr_string.
XMLRPCValue* xmlrpc_create_struct_value | ( | int | size | ) |
Definition at line 1104 of file xmlrpc.c.
References dict_create(), OPTIMAL_STRUCT_SIZE, xmlrpc_value::v_struct, xmlrpc_value::v_type, xmlrpc_value_create(), xmlrpc_value_destroy_item(), and xr_struct.
int xmlrpc_doc_add_scalar | ( | XMLRPCDocument * | xrdoc, |
int | d_type, | ||
int | type, | ||
void * | arg | ||
) |
Definition at line 639 of file xmlrpc.c.
References type, xmlrpc_create_scalar_value(), xmlrpc_doc_add_value(), and xmlrpc_value_destroy().
int xmlrpc_doc_add_value | ( | XMLRPCDocument * | xrdoc, |
int | d_type, | ||
XMLRPCValue * | value | ||
) |
Definition at line 612 of file xmlrpc.c.
References xmlrpc_document::d_type, error(), xmlrpc_document::methodcall, xmlrpc_document::methodresponse, xmlrpc_call_add_param(), xmlrpc_response_add_param(), xr_methodcall, xr_methodresponse, and xr_undefined.
Referenced by xmlrpc_doc_add_scalar().
XMLRPCDocument* xmlrpc_doc_create | ( | void | ) |
Definition at line 513 of file xmlrpc.c.
References xmlrpc_document::d_type, xmlrpc_document::methodcall, xmlrpc_document::methodresponse, xmlrpc_document::parse_error, xmlrpc_document::parse_status, XMLRPC_COMPILE_OK, and xr_undefined.
Referenced by xmlrpc_doc_create_call(), xmlrpc_doc_create_response(), and xmlrpc_doc_parse().
XMLRPCDocument* xmlrpc_doc_create_call | ( | Octstr * | name | ) |
Definition at line 526 of file xmlrpc.c.
References xmlrpc_document::d_type, xmlrpc_document::methodcall, name, xmlrpc_call_create(), xmlrpc_doc_create(), and xr_methodcall.
XMLRPCDocument* xmlrpc_doc_create_faultresponse | ( | long | faultcode, |
Octstr * | faultstring | ||
) |
Definition at line 548 of file xmlrpc.c.
References xmlrpc_document::methodresponse, response(), xmlrpc_doc_create_response(), and xmlrpc_fault_create().
XMLRPCDocument* xmlrpc_doc_create_response | ( | void | ) |
Definition at line 537 of file xmlrpc.c.
References xmlrpc_document::d_type, xmlrpc_document::methodresponse, xmlrpc_doc_create(), xmlrpc_response_create(), and xr_methodresponse.
Referenced by xmlrpc_doc_create_faultresponse().
void xmlrpc_doc_destroy | ( | XMLRPCDocument * | xrdoc, |
int | d_type | ||
) |
Definition at line 594 of file xmlrpc.c.
References xmlrpc_document::d_type, xmlrpc_document::methodcall, xmlrpc_document::methodresponse, octstr_destroy(), xmlrpc_document::parse_error, warning(), xmlrpc_call_destroy(), and xmlrpc_response_destroy().
XMLRPCDocument* xmlrpc_doc_parse | ( | Octstr * | post_body, |
int | d_type | ||
) |
Definition at line 561 of file xmlrpc.c.
References xmlrpc_document::d_type, octstr_create, octstr_get_cstr, octstr_len(), octstr_shrink_blanks(), octstr_strip_blanks(), parse_document(), xmlrpc_document::parse_error, xmlrpc_document::parse_status, size, xmlrpc_doc_create(), and XMLRPC_XMLPARSE_FAILED.
Octstr* xmlrpc_doc_print | ( | XMLRPCDocument * | xrdoc, |
int | d_type, | ||
int | level | ||
) |
Definition at line 654 of file xmlrpc.c.
References xmlrpc_document::d_type, error(), xmlrpc_document::methodcall, xmlrpc_document::methodresponse, octstr_destroy(), octstr_format(), octstr_insert(), xmlrpc_call_print(), xmlrpc_response_print(), xr_methodcall, and xr_methodresponse.
Referenced by xmlrpc_doc_send().
int xmlrpc_doc_send | ( | XMLRPCDocument * | xrdoc, |
int | d_type, | ||
HTTPCaller * | http_ref, | ||
Octstr * | url, | ||
List * | headers, | ||
void * | ref | ||
) |
Definition at line 686 of file xmlrpc.c.
References xmlrpc_document::d_type, error(), gwlist_create, http_header_add(), http_header_remove_all(), HTTP_METHOD_POST, http_start_request(), octstr_destroy(), url, and xmlrpc_doc_print().
Octstr* xmlrpc_get_call_name | ( | XMLRPCDocument * | call | ) |
Definition at line 1056 of file xmlrpc.c.
References xmlrpc_document::methodcall, and xmlrpc_call_get_name().
Referenced by smsbox_xmlrpc_post().
void* xmlrpc_get_content_param | ( | XMLRPCDocument * | xrdoc, |
int | i | ||
) |
Definition at line 1096 of file xmlrpc.c.
References xmlrpc_get_param(), and xmlrpc_value_get_content().
XMLRPCValue* xmlrpc_get_element | ( | XMLRPCValue * | xrarray, |
int | i | ||
) |
Definition at line 1239 of file xmlrpc.c.
References gwlist_get(), xmlrpc_value::v_array, xmlrpc_value::v_type, and xr_array.
Referenced by xmlrpc_get_element_content(), and xmlrpc_get_element_type().
void* xmlrpc_get_element_content | ( | XMLRPCValue * | xrarray, |
int | i | ||
) |
Definition at line 1254 of file xmlrpc.c.
References xmlrpc_get_element(), and xmlrpc_value_get_content().
int xmlrpc_get_element_type | ( | XMLRPCValue * | xrarray, |
int | i | ||
) |
Definition at line 1247 of file xmlrpc.c.
References xmlrpc_get_element(), and xmlrpc_value_get_type().
long xmlrpc_get_faultcode | ( | XMLRPCDocument * | faultresponse | ) |
Definition at line 1325 of file xmlrpc.c.
References error(), xmlrpc_document::methodresponse, xmlrpc_is_fault(), and xmlrpc_response_get_faultcode().
Referenced by receive_reply().
Octstr* xmlrpc_get_faultstring | ( | XMLRPCDocument * | faultresponse | ) |
Definition at line 1335 of file xmlrpc.c.
References error(), xmlrpc_document::methodresponse, xmlrpc_is_fault(), and xmlrpc_response_get_faultstring().
Referenced by receive_reply().
XMLRPCValue* xmlrpc_get_member | ( | XMLRPCValue * | xrstruct, |
Octstr * | name | ||
) |
Definition at line 1142 of file xmlrpc.c.
References dict_get(), name, xmlrpc_value::v_struct, xmlrpc_value::v_type, and xr_struct.
Referenced by parse_fault_element(), xmlrpc_get_member_content(), and xmlrpc_get_member_type().
void* xmlrpc_get_member_content | ( | XMLRPCValue * | xrstruct, |
Octstr * | name | ||
) |
Definition at line 1157 of file xmlrpc.c.
References name, xmlrpc_get_member(), and xmlrpc_value_get_content().
int xmlrpc_get_member_type | ( | XMLRPCValue * | xrstruct, |
Octstr * | name | ||
) |
Definition at line 1150 of file xmlrpc.c.
References name, xmlrpc_get_member(), and xmlrpc_value_get_type().
XMLRPCValue* xmlrpc_get_param | ( | XMLRPCDocument * | xrdoc, |
int | i | ||
) |
Definition at line 1076 of file xmlrpc.c.
References xmlrpc_document::d_type, gwlist_get(), gwlist_len(), xmlrpc_document::methodcall, xmlrpc_document::methodresponse, xmlrpc_methodresponse::param, xmlrpc_methodcall::params, xr_methodcall, and xr_methodresponse.
Referenced by xmlrpc_get_content_param(), and xmlrpc_get_type_param().
int xmlrpc_get_type_param | ( | XMLRPCDocument * | xrdoc, |
int | i | ||
) |
Definition at line 1089 of file xmlrpc.c.
References xmlrpc_get_param(), and xmlrpc_value_get_type().
int xmlrpc_is_fault | ( | XMLRPCDocument * | response | ) |
Definition at line 1317 of file xmlrpc.c.
References response(), xmlrpc_response_is_fault(), and xr_methodresponse.
Referenced by receive_reply(), xmlrpc_get_faultcode(), and xmlrpc_get_faultstring().
Octstr* xmlrpc_parse_error | ( | XMLRPCDocument * | xrdoc | ) |
Definition at line 1356 of file xmlrpc.c.
References octstr_duplicate, and xmlrpc_document::parse_error.
Referenced by main(), receive_reply(), and smsbox_xmlrpc_post().
int xmlrpc_parse_status | ( | XMLRPCDocument * | xrdoc | ) |
Definition at line 1348 of file xmlrpc.c.
References xmlrpc_document::parse_status.
Referenced by main(), receive_reply(), and smsbox_xmlrpc_post().
Definition at line 1261 of file xmlrpc.c.
References gwlist_get(), gwlist_len(), octstr_append(), octstr_destroy(), octstr_format(), octstr_format_append(), and xmlrpc_value_print().
Referenced by xmlrpc_value_print().
Definition at line 1164 of file xmlrpc.c.
References dict_get(), dict_key_count(), dict_keys(), gwlist_consume(), gwlist_destroy(), octstr_destroy(), octstr_destroy_item(), octstr_format(), octstr_format_append(), and xmlrpc_value_print().
Referenced by xmlrpc_value_print().
XMLRPCScalar* xmlrpc_scalar_create | ( | int | type, |
void * | arg | ||
) |
Definition at line 880 of file xmlrpc.c.
References error(), octstr_duplicate, xmlrpc_scalar::s_base64, xmlrpc_scalar::s_bool, xmlrpc_scalar::s_date, xmlrpc_scalar::s_double, xmlrpc_scalar::s_int, xmlrpc_scalar::s_str, xmlrpc_scalar::s_type, type, xmlrpc_scalar_destroy(), xr_base64, xr_bool, xr_date, xr_double, xr_int, and xr_string.
Referenced by parse_value_element(), and xmlrpc_create_scalar_value().
void xmlrpc_scalar_destroy | ( | XMLRPCScalar * | scalar | ) |
Definition at line 935 of file xmlrpc.c.
References octstr_destroy(), xmlrpc_scalar::s_base64, xmlrpc_scalar::s_date, and xmlrpc_scalar::s_str.
Referenced by xmlrpc_scalar_create(), and xmlrpc_value_destroy().
void* xmlrpc_scalar_get_content | ( | XMLRPCScalar * | scalar, |
int | s_type | ||
) |
Definition at line 954 of file xmlrpc.c.
References error(), xmlrpc_scalar::s_base64, xmlrpc_scalar::s_bool, xmlrpc_scalar::s_date, xmlrpc_scalar::s_double, xmlrpc_scalar::s_int, xmlrpc_scalar::s_str, xmlrpc_scalar::s_type, xr_base64, xr_bool, xr_date, xr_double, xr_int, and xr_string.
int xmlrpc_scalar_get_type | ( | XMLRPCScalar * | scalar | ) |
Octstr* xmlrpc_scalar_print | ( | XMLRPCScalar * | scalar, |
int | level | ||
) |
Definition at line 975 of file xmlrpc.c.
References octstr_convert_to_html_entities(), octstr_destroy(), octstr_duplicate, octstr_format(), xmlrpc_scalar::s_base64, xmlrpc_scalar::s_bool, xmlrpc_scalar::s_date, xmlrpc_scalar::s_double, xmlrpc_scalar::s_int, xmlrpc_scalar::s_str, xmlrpc_scalar::s_type, xr_base64, xr_bool, xr_date, xr_double, xr_int, and xr_string.
Referenced by xmlrpc_value_print().
XMLRPCValue* xmlrpc_value_create | ( | void | ) |
Definition at line 729 of file xmlrpc.c.
References xmlrpc_value::v_array, xmlrpc_value::v_scalar, xmlrpc_value::v_struct, xmlrpc_value::v_type, and xr_undefined.
Referenced by parse_data_element(), parse_fault_element(), parse_member_element(), parse_param_element(), xmlrpc_create_array_value(), xmlrpc_create_scalar_value(), and xmlrpc_create_struct_value().
void xmlrpc_value_destroy | ( | XMLRPCValue * | val | ) |
Definition at line 741 of file xmlrpc.c.
References dict_destroy(), gwlist_destroy(), xmlrpc_value::v_array, xmlrpc_value::v_scalar, xmlrpc_value::v_struct, xmlrpc_value::v_type, xmlrpc_scalar_destroy(), xmlrpc_value_destroy_item(), xr_array, xr_scalar, and xr_struct.
Referenced by parse_data_element(), parse_fault_element(), parse_member_element(), parse_param_element(), xmlrpc_add_element_scalar(), xmlrpc_add_member_scalar(), xmlrpc_doc_add_scalar(), xmlrpc_member_destroy(), xmlrpc_response_destroy(), and xmlrpc_value_destroy_item().
void xmlrpc_value_destroy_item | ( | void * | val | ) |
Definition at line 761 of file xmlrpc.c.
References xmlrpc_value_destroy().
Referenced by parse_methodresponse_element(), parse_value_element(), xmlrpc_call_destroy(), xmlrpc_create_struct_value(), and xmlrpc_value_destroy().
void* xmlrpc_value_get_content | ( | XMLRPCValue * | val | ) |
Definition at line 825 of file xmlrpc.c.
References error(), xmlrpc_value::v_array, xmlrpc_value::v_scalar, xmlrpc_value::v_struct, xmlrpc_value::v_type, xr_array, xr_scalar, and xr_struct.
Referenced by parse_fault_element(), xmlrpc_get_content_param(), xmlrpc_get_element_content(), and xmlrpc_get_member_content().
int xmlrpc_value_get_type | ( | XMLRPCValue * | val | ) |
Definition at line 808 of file xmlrpc.c.
References xmlrpc_value::v_type.
Referenced by parse_fault_element(), xmlrpc_get_element_type(), xmlrpc_get_member_type(), xmlrpc_get_type_param(), and xmlrpc_value_get_type_smart().
int xmlrpc_value_get_type_smart | ( | XMLRPCValue * | val | ) |
Definition at line 816 of file xmlrpc.c.
References type, xmlrpc_get_scalar_value_type, xmlrpc_value_get_type(), and xr_scalar.
Referenced by parse_fault_element().
Octstr* xmlrpc_value_print | ( | XMLRPCValue * | val, |
int | level | ||
) |
Definition at line 843 of file xmlrpc.c.
References octstr_destroy(), octstr_format(), xmlrpc_value::v_array, xmlrpc_value::v_scalar, xmlrpc_value::v_struct, xmlrpc_value::v_type, xmlrpc_print_array(), xmlrpc_print_struct(), xmlrpc_scalar_print(), xr_array, xr_scalar, and xr_struct.
Referenced by xmlrpc_call_print(), xmlrpc_print_array(), xmlrpc_print_struct(), and xmlrpc_response_print().
int xmlrpc_value_set_content | ( | XMLRPCValue * | val, |
void * | content | ||
) |
Definition at line 785 of file xmlrpc.c.
References error(), xmlrpc_value::v_array, xmlrpc_value::v_scalar, xmlrpc_value::v_struct, xmlrpc_value::v_type, xr_array, xr_scalar, and xr_struct.
int xmlrpc_value_set_type | ( | XMLRPCValue * | val, |
int | v_type | ||
) |
Definition at line 766 of file xmlrpc.c.
References error(), xmlrpc_value::v_type, xr_array, xr_scalar, and xr_struct.