Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
#include <limits.h>
#include "gwlib/gwlib.h"
#include "gwlib/http.h"
#include "smscconn.h"
#include "smscconn_p.h"
#include "bb_smscconn_cb.h"
#include "msg.h"
#include "sms.h"
#include "dlr.h"
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>
#include "msg-decl.h"
Go to the source code of this file.
Data Structures | |
struct | privdata |
struct | client_data |
struct | argument_map |
Macros | |
#define | SOAP_SLEEP_TIME 0.01 |
#define | SOAP_MAX_MESSAGE_PER_ROUND 1 |
#define | SOAP_DEFAULT_SENDER_STRING "Kannel" |
#define | SOAP_DEFAULT_VALIDITY 60 |
#define | SOAP_MO_URI "/mo" |
#define | SOAP_DLR_URI "/dlr" |
#define | SOAP_DEFAULT_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>No method by that name</Error>" |
#define | SOAP_ERROR_NO_DLR_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>Sorry - no DLR for that MT</Error>" |
#define | SOAP_ERROR_DLR_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>Fatal error while trying to parse delivery report</Error>" |
#define | SOAP_ERROR_MO_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>Fatal error while trying to parse incoming MO</Error>" |
#define | SOAP_ERROR_NO_DATA_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>No data received</Error>" |
#define | SOAP_ERROR_MALFORMED_DATA_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>Malformed data received</Error>" |
#define | SOAP_ERROR_NO_DLR_CODE HTTP_BAD_METHOD |
#define | SOAP_DEFAULT_CODE HTTP_NOT_FOUND |
#define | SOAP_ERROR_DLR_CODE HTTP_INTERNAL_SERVER_ERROR |
#define | SOAP_ERROR_MO_CODE HTTP_INTERNAL_SERVER_ERROR |
#define | SOAP_ERROR_NO_DATA_CODE HTTP_NOT_IMPLEMENTED |
#define | SOAP_ERROR_MALFORMED_DATA_CODE HTTP_BAD_GATEWAY |
#define | SOAP_QUERY_OK HTTP_OK |
#define | MIN_SOAP_CLIENTS 5 |
#define | MAX_SOAP_CLIENTS 50 |
#define | CLIENT_BUSY_TIME 5 |
#define | CLIENT_TEARDOWN_TIME 600 |
#define | CLIENT_BUSY_LOAD 5 |
#define | SPEC_DEFAULT "default" |
#define | O_DESTROY(a) { if(a) octstr_destroy(a); a=NULL; } |
#define | INTEGER(fieldname) |
#define | INT64(fieldname) |
#define | OCTSTR(fieldname) |
#define | UUID(fieldname) |
#define | VOID(fieldname) |
#define | MSG(type, stmt) case type: { struct type *p = &msg->type; stmt } break; |
Typedefs | |
typedef struct privdata | PrivData |
typedef struct client_data | ClientData |
typedef struct argument_map | ArgumentMap |
#define CLIENT_BUSY_LOAD 5 |
Definition at line 168 of file smsc_soap.c.
Referenced by soap_client_init_query().
#define CLIENT_BUSY_TIME 5 |
Definition at line 166 of file smsc_soap.c.
Referenced by soap_client_init_query().
#define CLIENT_TEARDOWN_TIME 600 |
Definition at line 167 of file smsc_soap.c.
#define INT64 | ( | fieldname | ) |
#define INTEGER | ( | fieldname | ) |
#define MAX_SOAP_CLIENTS 50 |
Definition at line 165 of file smsc_soap.c.
Referenced by soap_client_init_query().
#define MIN_SOAP_CLIENTS 5 |
Definition at line 164 of file smsc_soap.c.
#define O_DESTROY | ( | a | ) | { if(a) octstr_destroy(a); a=NULL; } |
Definition at line 225 of file smsc_soap.c.
Referenced by smsc_soap_create(), soap_listener(), soap_msgdata_attribute(), soap_o2o_msgdata_attribute(), soap_read_response(), soap_release_dependences(), soap_send(), soap_send_loop(), and soap_server().
#define OCTSTR | ( | fieldname | ) |
#define SOAP_DEFAULT_CODE HTTP_NOT_FOUND |
Definition at line 154 of file smsc_soap.c.
Referenced by soap_server().
#define SOAP_DEFAULT_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>No method by that name</Error>" |
Definition at line 145 of file smsc_soap.c.
Referenced by soap_server().
#define SOAP_DEFAULT_SENDER_STRING "Kannel" |
Definition at line 137 of file smsc_soap.c.
Referenced by soap_parse_mo().
#define SOAP_DEFAULT_VALIDITY 60 |
Definition at line 138 of file smsc_soap.c.
Referenced by soap_o2o_validity30_attribute().
#define SOAP_DLR_URI "/dlr" |
Definition at line 142 of file smsc_soap.c.
Referenced by soap_server().
#define SOAP_ERROR_DLR_CODE HTTP_INTERNAL_SERVER_ERROR |
Definition at line 155 of file smsc_soap.c.
Referenced by soap_server().
#define SOAP_ERROR_DLR_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>Fatal error while trying to parse delivery report</Error>" |
Definition at line 147 of file smsc_soap.c.
Referenced by soap_server().
#define SOAP_ERROR_MALFORMED_DATA_CODE HTTP_BAD_GATEWAY |
Definition at line 158 of file smsc_soap.c.
Referenced by soap_parse_dlr(), and soap_parse_mo().
#define SOAP_ERROR_MALFORMED_DATA_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>Malformed data received</Error>" |
Definition at line 150 of file smsc_soap.c.
Referenced by soap_parse_dlr(), and soap_parse_mo().
#define SOAP_ERROR_MO_CODE HTTP_INTERNAL_SERVER_ERROR |
Definition at line 156 of file smsc_soap.c.
Referenced by soap_server().
#define SOAP_ERROR_MO_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>Fatal error while trying to parse incoming MO</Error>" |
Definition at line 148 of file smsc_soap.c.
Referenced by soap_server().
#define SOAP_ERROR_NO_DATA_CODE HTTP_NOT_IMPLEMENTED |
Definition at line 157 of file smsc_soap.c.
Referenced by soap_parse_dlr(), and soap_parse_mo().
#define SOAP_ERROR_NO_DATA_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>No data received</Error>" |
Definition at line 149 of file smsc_soap.c.
Referenced by soap_parse_dlr(), and soap_parse_mo().
#define SOAP_ERROR_NO_DLR_CODE HTTP_BAD_METHOD |
Definition at line 153 of file smsc_soap.c.
Referenced by soap_parse_dlr().
#define SOAP_ERROR_NO_DLR_MESSAGE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Error>Sorry - no DLR for that MT</Error>" |
Definition at line 146 of file smsc_soap.c.
Referenced by soap_parse_dlr().
#define SOAP_MAX_MESSAGE_PER_ROUND 1 |
Definition at line 136 of file smsc_soap.c.
Referenced by soap_send_loop().
#define SOAP_MO_URI "/mo" |
Definition at line 141 of file smsc_soap.c.
Referenced by soap_server().
#define SOAP_QUERY_OK HTTP_OK |
Definition at line 159 of file smsc_soap.c.
Referenced by soap_parse_dlr(), and soap_parse_mo().
#define SOAP_SLEEP_TIME 0.01 |
Definition at line 135 of file smsc_soap.c.
Referenced by soap_listener(), and soap_server().
#define SPEC_DEFAULT "default" |
Definition at line 170 of file smsc_soap.c.
Referenced by soap_release_dependences().
#define UUID | ( | fieldname | ) |
#define VOID | ( | fieldname | ) |
typedef struct argument_map ArgumentMap |
typedef struct client_data ClientData |
Definition at line 354 of file smsc_soap.c.
References privdata::allow_ip, privdata::alt_charset, cfg, cfg_get, cfg_get_bool(), cfg_get_integer(), smscconn::connect_time, smscconn::data, debug(), privdata::deny_ip, privdata::dlr_spec_file, privdata::dlr_xml_file, error(), privdata::form_urlencoded, privdata::form_variable, gwlist_create, gwlist_destroy(), gwlist_extract_first(), gwlist_len(), gwthread_create, smscconn::id, info(), smscconn::is_stopped, privdata::listener_thread, privdata::mo_deps_file, privdata::mo_spec_file, privdata::mo_xml_file, privdata::mt_spec_file, privdata::mt_xml_file, privdata::name, smscconn::name, O_DESTROY, octstr_create, octstr_destroy(), octstr_destroy_item(), octstr_duplicate, octstr_format(), octstr_get_cstr, octstr_imm(), octstr_read_file(), octstr_split(), privdata::outgoing_queue, privdata::port, smscconn::queued, smscconn::send_msg, privdata::server_thread, privdata::shutdown, smscconn::shutdown, SMSCCONN_CONNECTING, SMSCCONN_DEAD, SMSCCONN_DISCONNECTED, SMSCCONN_KILLED_CANNOT_CONNECT, soap_add_msg_cb(), privdata::soap_client, soap_listener(), soap_queued_cb(), privdata::soap_server, soap_shutdown_cb(), soap_start_cb(), soap_stop_cb(), privdata::ssl, smscconn::start_conn, smscconn::status, smscconn::stop_conn, privdata::uri, and smscconn::why_killed.
Definition at line 563 of file smsc_soap.c.
References smscconn::data, debug(), gwlist_append(), gwlist_len(), gwthread_wakeup(), privdata::listener_thread, msg_duplicate(), privdata::name, octstr_get_cstr, privdata::outgoing_queue, SMSCCONN_DEAD, and smscconn::status.
Referenced by smsc_soap_create().
Definition at line 2700 of file smsc_soap.c.
References DC_8BIT, msg, and octstr_create.
Referenced by soap_select_function().
Definition at line 2851 of file smsc_soap.c.
References msg, and octstr_format().
Referenced by soap_select_function().
|
static |
Definition at line 2009 of file smsc_soap.c.
References client_data::caller, gwlist_get(), gwlist_len(), gwlist_lock(), and gwlist_unlock().
Referenced by soap_read_response().
|
static |
Definition at line 1933 of file smsc_soap.c.
References client_data::caller, CLIENT_BUSY_LOAD, CLIENT_BUSY_TIME, debug(), gwlist_append(), gwlist_create, gwlist_delete(), gwlist_extract_first(), gwlist_get(), gwlist_len(), gwlist_lock(), gwlist_unlock(), HTTP_METHOD_POST, http_start_request(), client_data::last_access, MAX_SOAP_CLIENTS, msg, privdata::name, octstr_get_cstr, client_data::requests, privdata::soap_client, soap_create_client_data(), and privdata::uri.
Referenced by soap_send().
Definition at line 2040 of file smsc_soap.c.
References error(), msg, name, octstr_get_cstr, soap_lookup_function(), and soap_select_function().
Referenced by soap_format_xml().
|
static |
Definition at line 1915 of file smsc_soap.c.
References client_data::caller, http_caller_create(), client_data::last_access, and client_data::requests.
Referenced by soap_client_init_query().
List * soap_create_map | ( | Octstr * | spec, |
long | count, | ||
char * | keywords[], | ||
char * | types[], | ||
void * | storage[] | ||
) |
Definition at line 2088 of file smsc_soap.c.
References argument_map::attribute, debug(), gwlist_append(), gwlist_create, gwlist_destroy(), gwlist_extract_first(), gwlist_get(), gwlist_len(), keywords, argument_map::name, octstr_create, octstr_destroy(), octstr_destroy_item(), octstr_get_cstr, octstr_imm(), octstr_split(), octstr_split_words(), octstr_str_compare(), argument_map::path, argument_map::sscan_type, and argument_map::store.
Referenced by soap_parse_dlr(), soap_parse_mo(), and soap_parse_response().
|
static |
Definition at line 1991 of file smsc_soap.c.
References client_data::caller, http_caller_destroy(), and http_caller_signal_shutdown().
Referenced by soap_listener().
void soap_destroy_map | ( | void * | item | ) |
Definition at line 2143 of file smsc_soap.c.
References argument_map::attribute, argument_map::name, octstr_destroy(), argument_map::path, and argument_map::sscan_type.
Referenced by soap_parse_dlr(), soap_parse_mo(), and soap_parse_response().
Definition at line 2162 of file smsc_soap.c.
References content, debug(), found, gwlist_destroy(), gwlist_get(), gwlist_len(), octstr_copy, octstr_create, octstr_destroy(), octstr_destroy_item(), octstr_get_char(), octstr_get_cstr, octstr_imm(), octstr_len(), octstr_split(), and octstr_str_compare().
Definition at line 1014 of file smsc_soap.c.
References error(), msg, octstr_append(), octstr_append_char(), octstr_copy, octstr_create, octstr_destroy(), octstr_get_char(), octstr_get_cstr, octstr_len(), soap_convert_token(), start, and token.
Referenced by soap_parse_dlr(), soap_parse_mo(), and soap_send_loop().
Definition at line 2889 of file smsc_soap.c.
References error(), gwlist_get(), gwlist_len(), argument_map::name, octstr_compare(), octstr_get_cstr, and octstr_str_compare().
Referenced by soap_release_dependences().
|
static |
Definition at line 718 of file smsc_soap.c.
References privdata::allow_ip, privdata::alt_charset, bb_smscconn_connected(), bb_smscconn_killed(), bb_smscconn_send_failed(), smscconn::data, debug(), privdata::deny_ip, privdata::dlr_spec_file, privdata::dlr_xml_file, error(), smscconn::flow_mutex, privdata::form_variable, gwlist_destroy(), gwlist_extract_first(), gwlist_len(), gwthread_sleep(), privdata::mo_deps_file, privdata::mo_spec_file, privdata::mo_xml_file, msg, privdata::mt_spec_file, privdata::mt_xml_file, mutex_lock, mutex_unlock, privdata::name, O_DESTROY, octstr_get_cstr, privdata::outgoing_queue, privdata::shutdown, SMSCCONN_ACTIVE, SMSCCONN_CONNECTING, SMSCCONN_DEAD, SMSCCONN_DISCONNECTED, SMSCCONN_FAILED_SHUTDOWN, SMSCCONN_RECONNECTING, privdata::soap_client, soap_destroy_client_data(), soap_read_response(), soap_send_loop(), privdata::soap_server, soap_server_start(), soap_server_stop(), SOAP_SLEEP_TIME, smscconn::status, and privdata::uri.
Referenced by smsc_soap_create(), and soap_start_cb().
int soap_lookup_function | ( | Octstr * | funcname | ) |
Definition at line 2637 of file smsc_soap.c.
References octstr_str_compare().
Referenced by soap_convert_token().
int soap_map_xml_data | ( | xmlNodePtr | xml, |
List * | maps | ||
) |
Definition at line 2282 of file smsc_soap.c.
References argument_map::attribute, content, debug(), found, gwlist_destroy(), gwlist_get(), gwlist_len(), argument_map::name, octstr_create, octstr_destroy(), octstr_destroy_item(), octstr_get_cstr, octstr_imm(), octstr_split(), octstr_str_compare(), octstr_strip_blanks(), argument_map::path, argument_map::sscan_type, and argument_map::store.
Referenced by soap_parse_dlr(), soap_parse_mo(), and soap_parse_response().
Definition at line 2709 of file smsc_soap.c.
References DC_8BIT, msg, and octstr_create.
Referenced by soap_select_function().
Definition at line 2863 of file smsc_soap.c.
References date_create_iso(), and msg.
Referenced by soap_select_function().
Definition at line 2845 of file smsc_soap.c.
References date_create_iso(), and msg.
Referenced by soap_select_function().
Definition at line 2789 of file smsc_soap.c.
References privdata::alt_charset, charset_convert(), DC_7BIT, DC_8BIT, DC_UCS2, DC_UNDEF, debug(), error(), msg, O_DESTROY, octstr_append(), octstr_binary_to_hex(), octstr_convert_to_html_entities(), octstr_dump, octstr_duplicate, and octstr_get_cstr.
Referenced by soap_select_function().
Definition at line 2581 of file smsc_soap.c.
References privdata::alt_charset, charset_convert(), debug(), error(), msg, privdata::name, octstr_base64_to_binary(), octstr_case_compare(), octstr_create, octstr_dump, octstr_get_cstr, octstr_hex_to_binary(), and octstr_imm().
Referenced by soap_process_deps().
int soap_msgtype_deps | ( | int | key_func_index, |
Msg * | msg | ||
) |
Definition at line 2555 of file smsc_soap.c.
References DC_7BIT, DC_8BIT, DC_UCS2, error(), and msg.
Referenced by soap_process_deps().
Definition at line 2856 of file smsc_soap.c.
References msg, and soap_write_date().
Referenced by soap_select_function().
Definition at line 2874 of file smsc_soap.c.
References DLR_IS_ENABLED_SMSC, msg, and octstr_create.
Referenced by soap_select_function().
Definition at line 2880 of file smsc_soap.c.
References DLR_IS_SUCCESS, msg, and octstr_create.
Referenced by soap_select_function().
Definition at line 2718 of file smsc_soap.c.
References privdata::alt_charset, charset_convert(), DC_7BIT, DC_8BIT, DC_UCS2, DC_UNDEF, debug(), error(), msg, O_DESTROY, octstr_append(), octstr_binary_to_base64(), octstr_convert_to_html_entities(), octstr_create, octstr_dump, octstr_duplicate, octstr_format(), octstr_get_cstr, and octstr_len().
Referenced by soap_select_function().
Definition at line 2839 of file smsc_soap.c.
References msg, octstr_format(), SMS_PARAM_UNDEFINED, and SOAP_DEFAULT_VALIDITY.
Referenced by soap_select_function().
Definition at line 1512 of file smsc_soap.c.
References bb_smscconn_receive(), smscconn::data, debug(), DLR_BUFFERED, DLR_FAIL, dlr_find(), privdata::dlr_spec_file, DLR_SUCCESS, privdata::dlr_xml_file, error(), gwlist_destroy(), smscconn::id, keywords, privdata::name, octstr_create, octstr_delete(), octstr_destroy(), octstr_get_cstr, octstr_imm(), octstr_search_char(), octstr_url_decode(), response(), soap_create_map(), soap_destroy_map(), SOAP_ERROR_MALFORMED_DATA_CODE, SOAP_ERROR_MALFORMED_DATA_MESSAGE, SOAP_ERROR_NO_DATA_CODE, SOAP_ERROR_NO_DATA_MESSAGE, SOAP_ERROR_NO_DLR_CODE, SOAP_ERROR_NO_DLR_MESSAGE, soap_format_xml(), soap_map_xml_data(), and SOAP_QUERY_OK.
Referenced by soap_server().
Definition at line 1275 of file smsc_soap.c.
References bb_smscconn_receive(), smscconn::data, date(), date_convert_universal(), date_parse_iso(), debug(), error(), gwlist_destroy(), gwlist_len(), smscconn::id, keywords, privdata::mo_deps_file, privdata::mo_spec_file, privdata::mo_xml_file, msg, msg_create, privdata::name, octstr_create, octstr_delete(), octstr_destroy(), octstr_duplicate, octstr_get_cstr, octstr_search_char(), octstr_url_decode(), response(), soap_create_map(), SOAP_DEFAULT_SENDER_STRING, soap_destroy_map(), SOAP_ERROR_MALFORMED_DATA_CODE, SOAP_ERROR_MALFORMED_DATA_MESSAGE, SOAP_ERROR_NO_DATA_CODE, SOAP_ERROR_NO_DATA_MESSAGE, soap_format_xml(), soap_map_xml_data(), SOAP_QUERY_OK, and soap_release_dependences().
Referenced by soap_server().
Definition at line 1205 of file smsc_soap.c.
References error(), gwlist_destroy(), keywords, privdata::mt_spec_file, privdata::name, octstr_get_cstr, soap_create_map(), soap_destroy_map(), soap_map_xml_data(), and warning().
Referenced by soap_read_response().
Definition at line 2536 of file smsc_soap.c.
References msg, soap_msgdata_deps(), and soap_msgtype_deps().
Referenced by soap_release_dependences().
|
static |
Definition at line 688 of file smsc_soap.c.
References smscconn::data, gwlist_len(), smscconn::load, privdata::outgoing_queue, SMSCCONN_DEAD, and smscconn::status.
Referenced by smsc_soap_create().
Definition at line 2868 of file smsc_soap.c.
References gw_rand(), and octstr_format().
Referenced by soap_select_function().
time_t soap_read_date | ( | Octstr * | dateString | ) |
Definition at line 1777 of file smsc_soap.c.
References date_convert_universal(), universaltime::day, debug(), universaltime::hour, universaltime::minute, universaltime::month, octstr_get_cstr, octstr_len(), octstr_parse_long(), universaltime::second, and universaltime::year.
|
static |
Definition at line 1118 of file smsc_soap.c.
References bb_smscconn_send_failed(), bb_smscconn_sent(), client_data::caller, smscconn::data, debug(), dlr_add(), gwlist_len(), http_destroy_headers(), http_receive_result, smscconn::id, msg, privdata::name, O_DESTROY, octstr_create, octstr_get_cstr, octstr_imm(), client_data::requests, SMSCCONN_FAILED_MALFORMED, privdata::soap_client, soap_client_have_response(), and soap_parse_response().
Referenced by soap_listener().
Definition at line 2404 of file smsc_soap.c.
References error(), gwlist_destroy(), gwlist_extract_first(), gwlist_get(), gwlist_len(), msg, O_DESTROY, octstr_create, octstr_destroy_item(), octstr_duplicate, octstr_get_cstr, octstr_imm(), octstr_split(), octstr_split_words(), octstr_str_compare(), octstr_strip_blanks(), octstr_strip_crlfs(), soap_get_index(), soap_process_deps(), SPEC_DEFAULT, and argument_map::store.
Referenced by soap_parse_mo().
Definition at line 2663 of file smsc_soap.c.
References error(), msg, soap_bouyg_content_attribute(), soap_bouyg_validity_attribute(), soap_mobitai_content_attribute(), soap_mobitai_date_attribute(), soap_mobitai_validity_date_attribute(), soap_msgdata_attribute(), soap_o2o_date_attribute(), soap_o2o_dlrmask_smsc_yn_attribute(), soap_o2o_dlrmask_success_01_attribute(), soap_o2o_msgdata_attribute(), soap_o2o_validity30_attribute(), and soap_rand_attribute().
Referenced by soap_convert_token().
Definition at line 1080 of file smsc_soap.c.
References privdata::form_urlencoded, privdata::form_variable, http_create_empty_headers(), http_destroy_headers(), http_header_add(), msg, O_DESTROY, octstr_format(), and soap_client_init_query().
Referenced by soap_send_loop().
|
static |
Definition at line 963 of file smsc_soap.c.
References bb_smscconn_send_failed(), counter, smscconn::data, debug(), gwlist_extract_first(), msg, privdata::mt_xml_file, privdata::name, O_DESTROY, octstr_create, octstr_get_cstr, privdata::outgoing_queue, SMSCCONN_FAILED_MALFORMED, soap_format_xml(), SOAP_MAX_MESSAGE_PER_ROUND, soap_send(), uuid_generate(), and uuid_is_null().
Referenced by soap_listener().
|
static |
Definition at line 850 of file smsc_soap.c.
References smscconn::data, date_format_http(), debug(), error(), gwlist_destroy(), gwthread_sleep(), http_accept_request(), http_create_empty_headers(), http_destroy_headers(), http_header_add(), http_send_reply(), privdata::name, O_DESTROY, octstr_compare(), octstr_create, octstr_get_cstr, octstr_imm(), privdata::port, SOAP_DEFAULT_CODE, SOAP_DEFAULT_MESSAGE, SOAP_DLR_URI, SOAP_ERROR_DLR_CODE, SOAP_ERROR_DLR_MESSAGE, SOAP_ERROR_MO_CODE, SOAP_ERROR_MO_MESSAGE, SOAP_MO_URI, soap_parse_dlr(), soap_parse_mo(), privdata::soap_server, and SOAP_SLEEP_TIME.
Referenced by soap_server_start().
int soap_server_start | ( | SMSCConn * | conn | ) |
Definition at line 1845 of file smsc_soap.c.
References smscconn::data, debug(), error(), gwthread_create, http_close_port(), http_open_port(), privdata::name, octstr_get_cstr, privdata::port, privdata::server_thread, privdata::soap_server, soap_server(), and privdata::ssl.
Referenced by soap_listener().
|
static |
Definition at line 1875 of file smsc_soap.c.
References debug(), gwthread_join(), gwthread_wakeup(), http_close_port(), privdata::name, octstr_get_cstr, privdata::port, privdata::server_thread, and privdata::soap_server.
Referenced by soap_listener().
|
static |
Definition at line 594 of file smsc_soap.c.
References bb_smscconn_send_failed(), smscconn::data, debug(), gwlist_extract_first(), gwthread_join(), gwthread_wakeup(), privdata::listener_thread, msg, privdata::name, octstr_get_cstr, privdata::outgoing_queue, privdata::shutdown, SMSCCONN_DEAD, SMSCCONN_FAILED_SHUTDOWN, SMSCCONN_KILLED_SHUTDOWN, smscconn::status, and smscconn::why_killed.
Referenced by smsc_soap_create().
|
static |
Definition at line 634 of file smsc_soap.c.
References smscconn::data, debug(), error(), gwthread_create, privdata::listener_thread, privdata::name, octstr_get_cstr, privdata::shutdown, SMSCCONN_CONNECTING, SMSCCONN_DEAD, SMSCCONN_KILLED_CANNOT_CONNECT, soap_listener(), smscconn::status, and smscconn::why_killed.
Referenced by smsc_soap_create().
|
static |
Definition at line 665 of file smsc_soap.c.
References smscconn::data, debug(), privdata::name, octstr_get_cstr, SMSCCONN_DEAD, SMSCCONN_DISCONNECTED, and smscconn::status.
Referenced by smsc_soap_create().
|
static |
Definition at line 1814 of file smsc_soap.c.
References date(), octstr_create, and octstr_format().
Referenced by soap_o2o_date_attribute().
int soap_xmlnode_get_int64 | ( | xmlNodePtr | cur, |
long long * | out | ||
) |
int soap_xmlnode_get_long | ( | xmlNodePtr | cur, |
long * | out | ||
) |
int soap_xmlnode_get_octstr | ( | xmlNodePtr | cur, |
Octstr ** | out | ||
) |