Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <errno.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <inttypes.h>
#include <libxml/tree.h>
#include <libxml/parser.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
#include "gwlib/gwlib.h"
#include "gwlib/gw-regex.h"
#include "gwlib/gw-timer.h"
#include "msg.h"
#include "sms.h"
#include "dlr.h"
#include "bb.h"
#include "shared.h"
#include "heartbeat.h"
#include "html.h"
#include "urltrans.h"
#include "ota_prov_attr.h"
#include "ota_prov.h"
#include "ota_compiler.h"
#include "xml_shared.h"
Go to the source code of this file.
Data Structures | |
struct | TimerItem |
struct | receiver |
Macros | |
#define | SENDSMS_DEFAULT_CHARS "0123456789 +-" |
#define | O_DESTROY(a) { if(a) octstr_destroy(a); a = NULL; } |
#define | ACCOUNT_MAX_LEN 64 |
#define | HTTP_MAX_RETRIES 0 |
#define | HTTP_RETRY_DELAY 10 /* in sec. */ |
#define | HTTP_MAX_PENDING 512 /* max requests handled in parallel */ |
#define | XPATH_SEARCH_OCTSTR(path, var, nostrip) |
#define | XPATH_SEARCH_NUMBER(path, var) |
#define | OCTSTR_APPEND_XML(xml, tag, text) octstr_format_append(xml, " \t\t<" tag ">%s</" tag ">\n", (text?octstr_get_cstr(text):"")) |
#define | OCTSTR_APPEND_XML_OCTSTR(xml, tag, text) |
#define | OCTSTR_APPEND_XML_NUMBER(xml, tag, value) octstr_format_append(xml, " \t\t<" tag ">%ld</" tag ">\n", (long) value) |
Typedefs | |
typedef struct TimerItem | TimerItem |
Functions | |
static void | identify_to_bearerbox (void) |
static void | delayed_http_reply (Msg *msg) |
static void | read_messages_from_bearerbox (void) |
static int | send_message (URLTranslation *trans, Msg *msg) |
static void * | remember_receiver (Msg *msg, URLTranslation *trans, int method, Octstr *url, List *headers, Octstr *body, unsigned int retries) |
static void | get_receiver (void *id, Msg **msg, URLTranslation **trans, int *method, Octstr **url, List **headers, Octstr **body, unsigned long *retries) |
static long | outstanding_requests (void) |
static void | strip_prefix_and_suffix (Octstr *html, Octstr *prefix, Octstr *suffix) |
static void | get_x_kannel_from_headers (List *headers, Octstr **from, Octstr **to, Octstr **udh, Octstr **user, Octstr **pass, Octstr **smsc, int *mclass, int *mwi, int *coding, int *compress, int *validity, int *deferred, int *dlr_mask, Octstr **dlr_url, Octstr **account, int *pid, int *alt_dcs, int *rpi, Octstr **binfo, int *priority, Octstr **meta_data) |
static void | get_x_kannel_from_xml (int requesttype, Octstr **type, Octstr **body, List *headers, Octstr **from, Octstr **to, Octstr **udh, Octstr **user, Octstr **pass, Octstr **smsc, int *mclass, int *mwi, int *coding, int *compress, int *validity, int *deferred, int *dlr_mask, Octstr **dlr_url, Octstr **account, int *pid, int *alt_dcs, int *rpi, List **tolist, Octstr **charset, Octstr **binfo, int *priority, Octstr **meta_data) |
static void | fill_message (Msg *msg, URLTranslation *trans, Octstr *replytext, Octstr *from, Octstr *to, Octstr *udh, int mclass, int mwi, int coding, int compress, int validity, int deferred, Octstr *dlr_url, int dlr_mask, int pid, int alt_dcs, int rpi, Octstr *smsc, Octstr *account, Octstr *charset, Octstr *binfo, int priority, Octstr *meta_data) |
static void | http_queue_thread (void *arg) |
static void | url_result_thread (void *arg) |
static int | obey_request (Octstr **result, URLTranslation *trans, Msg *msg) |
static void | obey_request_thread (void *arg) |
static Octstr * | store_uuid (Msg *msg) |
static Octstr * | smsbox_req_handle (URLTranslation *t, Octstr *client_ip, HTTPClient *client, Octstr *from, Octstr *to, Octstr *text, Octstr *charset, Octstr *udh, Octstr *smsc, int mclass, int mwi, int coding, int compress, int validity, int deferred, int *status, int dlr_mask, Octstr *dlr_url, Octstr *account, int pid, int alt_dcs, int rpi, List *receiver, Octstr *binfo, int priority, Octstr *meta_data) |
static URLTranslation * | authorise_username (Octstr *username, Octstr *password, Octstr *client_ip) |
static URLTranslation * | default_authorise_user (List *list, Octstr *client_ip) |
static URLTranslation * | authorise_user (List *list, Octstr *client_ip) |
static Octstr * | smsbox_req_sendsms (List *args, Octstr *client_ip, int *status, HTTPClient *client) |
static Octstr * | smsbox_sendsms_post (List *headers, Octstr *body, Octstr *client_ip, int *status, HTTPClient *client) |
static Octstr * | smsbox_xmlrpc_post (List *headers, Octstr *body, Octstr *client_ip, int *status) |
static Octstr * | smsbox_req_sendota (List *list, Octstr *client_ip, int *status, HTTPClient *client) |
static Octstr * | smsbox_sendota_post (List *headers, Octstr *body, Octstr *client_ip, int *status, HTTPClient *client) |
static void | sendsms_thread (void *arg) |
static void | signal_handler (int signum) |
static void | setup_signal_handlers (void) |
static Cfg * | init_smsbox (Cfg *cfg) |
static int | check_args (int i, int argc, char **argv) |
int | main (int argc, char **argv) |
#define ACCOUNT_MAX_LEN 64 |
Definition at line 99 of file smsbox.c.
Referenced by smsbox_req_handle().
#define HTTP_MAX_PENDING 512 /* max requests handled in parallel */ |
Definition at line 104 of file smsbox.c.
Referenced by init_smsbox().
#define O_DESTROY | ( | a | ) | { if(a) octstr_destroy(a); a = NULL; } |
Definition at line 97 of file smsbox.c.
Referenced by at2_check_sms_memory(), at2_destroy_modem(), at2_format_address_field(), at2_pdu_decode_deliver_sm(), at2_pdu_decode_report_sm(), at2_pdu_encode(), at2_read_modems(), at2_read_pending_incoming_messages(), at2_send_one_message(), at2_wait_modem_command(), at2_write_line(), fill_message(), get_x_kannel_from_xml(), obey_request(), smsbox_req_handle(), and smsc_at2_create().
#define OCTSTR_APPEND_XML | ( | xml, | |
tag, | |||
text | |||
) | octstr_format_append(xml, " \t\t<" tag ">%s</" tag ">\n", (text?octstr_get_cstr(text):"")) |
Referenced by obey_request().
#define OCTSTR_APPEND_XML_NUMBER | ( | xml, | |
tag, | |||
value | |||
) | octstr_format_append(xml, " \t\t<" tag ">%ld</" tag ">\n", (long) value) |
Referenced by obey_request().
#define OCTSTR_APPEND_XML_OCTSTR | ( | xml, | |
tag, | |||
text | |||
) |
Referenced by obey_request().
#define SENDSMS_DEFAULT_CHARS "0123456789 +-" |
Definition at line 95 of file smsbox.c.
Referenced by init_smsbox().
#define XPATH_SEARCH_NUMBER | ( | path, | |
var | |||
) |
Referenced by get_x_kannel_from_xml().
#define XPATH_SEARCH_OCTSTR | ( | path, | |
var, | |||
nostrip | |||
) |
Referenced by get_x_kannel_from_xml().
|
static |
Definition at line 2494 of file smsbox.c.
References default_authorise_user(), octstr_imm(), translations, and urltrans_find_username().
Referenced by smsbox_req_sendota(), and smsbox_req_sendsms().
|
static |
Definition at line 2447 of file smsbox.c.
References allow_ip, deny_ip, info(), is_allowed_ip(), octstr_compare(), octstr_get_cstr, password, translations, urltrans_allow_ip(), urltrans_deny_ip(), urltrans_find_username(), urltrans_password(), username, and warning().
Referenced by default_authorise_user(), smsbox_sendota_post(), and smsbox_sendsms_post().
|
static |
|
static |
Definition at line 2480 of file smsbox.c.
References authorise_username(), and http_cgi_variable().
Referenced by authorise_user().
|
static |
Definition at line 185 of file smsbox.c.
References ack_buffered, ack_failed, ack_failed_tmp, ack_success, client(), client_dict, debug(), dict_remove(), error(), HTTP_ACCEPTED, HTTP_FORBIDDEN, http_send_reply(), HTTP_SERVICE_UNAVAILABLE, msg, octstr_create, octstr_destroy(), octstr_get_cstr, sendsms_reply_hdrs, UUID_STR_LEN, and uuid_unparse().
Referenced by read_messages_from_bearerbox().
|
static |
Definition at line 840 of file smsbox.c.
References account, charset, coding, DC_7BIT, DC_8BIT, DC_UNDEF, dlr_mask, dlr_url, from, meta_data, msg, O_DESTROY, octstr_destroy(), octstr_get_cstr, octstr_len(), SMS_PARAM_UNDEFINED, receiver::trans, urltrans_accept_x_kannel_headers(), and warning().
Referenced by url_result_thread().
|
static |
Definition at line 496 of file smsbox.c.
References receiver::body, counter_decrease(), receiver::http_headers, method, receiver::method, msg, receiver::msg, num_outstanding_requests, retries, receiver::retries, receiver::trans, url, and receiver::url.
Referenced by http_queue_thread(), and url_result_thread().
|
static |
Definition at line 545 of file smsbox.c.
References account, coding, dlr_mask, dlr_url, from, gwlist_len(), http_header_get(), name, octstr_case_compare(), octstr_destroy(), octstr_duplicate, octstr_get_cstr, octstr_hex_to_binary(), octstr_imm(), octstr_strip_blanks(), octstr_url_decode(), and warning().
Referenced by smsbox_sendsms_post(), and url_result_thread().
|
static |
Definition at line 655 of file smsbox.c.
References account, receiver::body, charset, coding, debug(), dlr_mask, dlr_url, error(), from, gwlist_append(), gwlist_create, mt_push, O_DESTROY, octstr_append(), octstr_create, octstr_destroy(), octstr_get_cstr, octstr_hex_to_binary(), octstr_len(), octstr_str_case_compare(), octstr_strip_blanks(), octstr_truncate(), octstr_url_decode(), text, type, XPATH_SEARCH_NUMBER, and XPATH_SEARCH_OCTSTR.
Referenced by smsbox_sendsms_post(), and url_result_thread().
|
static |
Definition at line 1015 of file smsbox.c.
References caller, debug(), get_receiver(), gw_timer_elapsed_destroy(), gwlist_consume(), gwlist_len(), http_destroy_headers(), http_start_request(), TimerItem::id, max_http_retries, method, msg, msg_destroy(), octstr_destroy(), octstr_get_cstr, remember_receiver(), retries, smsbox_http_requests, TimerItem::timer, and receiver::trans.
Referenced by main().
|
static |
Definition at line 172 of file smsbox.c.
References cmd_identify, msg, msg_create, octstr_duplicate, smsbox_id, and write_to_bearerbox().
Referenced by main().
Definition at line 3339 of file smsbox.c.
References accepted_chars, alog_open(), BB_DEFAULT_HOST, BB_DEFAULT_SMSBOX_PORT, bb_host, bb_port, bb_ssl, black_list, black_list_regex, cfg, cfg_get, cfg_get_bool(), cfg_get_integer(), cfg_get_list(), cfg_get_single_group(), conn_config_ssl(), error(), global_sender, GW_NON_EXCL, gwlist_destroy(), gwthread_create, HTTP_MAX_PENDING, http_open_port_if(), http_queue_delay, http_set_client_timeout(), http_use_proxy(), immediate_sendsms_reply, info(), lf, log_open(), log_set_syslog(), log_set_syslog_facility(), max_http_retries, max_pending_requests, mo_recode, numhash_create(), octstr_case_compare(), octstr_compare(), octstr_create, octstr_destroy(), octstr_destroy_item(), octstr_get_cstr, octstr_imm(), octstr_parse_long(), only_try_http, panic, ppg_service_name, reply_couldnotfetch, reply_couldnotrepresent, reply_emptymessage, reply_requestfailed, semaphore_create(), sendota_url, SENDSMS_DEFAULT_CHARS, sendsms_interface, sendsms_number_chars, sendsms_port, sendsms_thread(), sendsms_url, sms_max_length, smsbox_id, ssl, white_list, white_list_regex, and xmlrpc_url.
Referenced by main().
int main | ( | int | argc, |
char ** | argv | ||
) |
Definition at line 3597 of file smsbox.c.
References accepted_chars, ALL_HEARTBEATS, alog_close(), bb_host, bb_port, bb_ssl, black_list, black_list_regex, caller, catenated_sms_counter, cfg, cfg_create(), cfg_destroy(), cfg_read(), check_args(), client_dict, close_connection_to_bearerbox(), connect_to_bearerbox(), counter_create(), counter_destroy(), debug(), DEFAULT_HEARTBEAT, dict_create(), dict_destroy(), filename, get_and_set_debugs(), global_sender, gw_assert(), gw_timerset_create(), gw_timerset_destroy(), gwlib_init(), gwlib_shutdown(), gwlist_add_producer(), gwlist_create, gwlist_destroy(), gwlist_len(), gwlist_remove_producer(), gwthread_create, gwthread_join_every(), gwthread_sleep(), heartbeat_start(), heartbeat_stop(), http_caller_create(), http_caller_destroy(), http_caller_signal_shutdown(), http_close_all_ports(), http_create_empty_headers(), http_destroy_headers(), http_header_add(), http_queue_delay, http_queue_thread(), identify_to_bearerbox(), info(), init_smsbox(), log_close_all(), max_http_retries, max_pending_requests, num_outstanding_requests, numhash_destroy(), obey_request_thread(), octstr_create, octstr_destroy(), octstr_get_cstr, outstanding_requests(), panic, ppg_service_name, read_messages_from_bearerbox(), reply_couldnotfetch, reply_couldnotrepresent, reply_emptymessage, reply_requestfailed, report_versions(), restart, restart_box(), semaphore_destroy(), sendota_url, sendsms_interface, sendsms_reply_hdrs, sendsms_thread(), sendsms_url, setup_signal_handlers(), smsbox_http_requests, smsbox_id, smsbox_requests, timerset, translations, url_result_thread(), urltrans_add_cfg(), urltrans_create(), urltrans_destroy(), white_list, white_list_regex, write_to_bearerbox(), and xmlrpc_url.
|
static |
Definition at line 1241 of file smsbox.c.
References alog(), caller, DC_8BIT, DC_UCS2, debug(), error(), gw_assert(), gw_gmtime(), http_create_empty_headers(), http_destroy_headers(), http_header_add(), HTTP_METHOD_GET, HTTP_METHOD_POST, http_start_request(), max_pending_requests, msg, O_DESTROY, octstr_append(), OCTSTR_APPEND_XML, OCTSTR_APPEND_XML_NUMBER, OCTSTR_APPEND_XML_OCTSTR, octstr_create, octstr_destroy(), octstr_duplicate, octstr_format(), octstr_get_cstr, octstr_imm(), octstr_len(), octstr_read_file(), octstr_read_pipe(), octstr_url_encode(), remember_receiver(), report_mo, semaphore_down(), semaphore_up(), SMS_PARAM_UNDEFINED, TRANSTYPE_EXECUTE, TRANSTYPE_FILE, TRANSTYPE_GET_URL, TRANSTYPE_POST_URL, TRANSTYPE_POST_XML, TRANSTYPE_SENDSMS, TRANSTYPE_TEXT, type, urltrans_get_pattern(), urltrans_send_sender(), and urltrans_type().
Referenced by obey_request_thread().
|
static |
Definition at line 1659 of file smsbox.c.
References ack_failed, ack_success, charset_convert(), DC_7BIT, DC_UCS2, error(), global_sender, gwlist_consume(), info(), mo_recode, msg, msg_create, msg_destroy(), msg_dump(), mt_reply, obey_request(), octstr_compare(), octstr_create, octstr_destroy(), octstr_duplicate, octstr_get_cstr, octstr_imm(), octstr_len(), octstr_recode(), ppg_service_name, reply(), reply_requestfailed, report_mo, send_message(), sms_swap(), smsbox_requests, text, translations, urltrans_alt_charset(), urltrans_faked_sender(), urltrans_find(), urltrans_find_service(), urltrans_name(), uuid_copy(), warning(), and write_to_bearerbox().
Referenced by main().
|
static |
Definition at line 515 of file smsbox.c.
References counter_value(), and num_outstanding_requests.
Referenced by main(), and run_smppbox().
|
static |
Definition at line 242 of file smsbox.c.
References cmd_restart, cmd_shutdown, delayed_http_reply(), error(), gwlist_produce(), immediate_sendsms_reply, INFINITE_TIME, info(), msg, msg_destroy(), read_from_bearerbox(), restart, shutting_down, smsbox_requests, start, and warning().
Referenced by main().
|
static |
Definition at line 459 of file smsbox.c.
References receiver::body, counter_increase(), http_header_duplicate(), receiver::http_headers, method, receiver::method, msg, receiver::msg, msg_create, num_outstanding_requests, octstr_compare(), octstr_duplicate, ppg_service_name, retries, receiver::retries, receiver::trans, url, receiver::url, and urltrans_name().
Referenced by http_queue_thread(), obey_request(), and url_result_thread().
|
static |
Definition at line 315 of file smsbox.c.
References catenated_sms_counter, counter_increase(), debug(), DLR_IS_ENABLED, dlr_url, gw_assert(), gwlist_append(), gwlist_create, gwlist_destroy(), gwlist_extract_first(), gwlist_len(), info(), msg, msg_destroy(), msg_duplicate(), mt_reply, octstr_append(), octstr_delete(), octstr_destroy(), octstr_duplicate, octstr_len(), reply_emptymessage, sms_max_length, sms_split(), smsbox_id, urltrans_concatenation(), urltrans_dlr_mask(), urltrans_dlr_url(), urltrans_footer(), urltrans_header(), urltrans_max_messages(), urltrans_omit_empty(), urltrans_split_chars(), urltrans_split_suffix(), and write_to_bearerbox().
Referenced by obey_request_thread(), smsbox_req_handle(), smsbox_req_sendota(), smsbox_sendota_post(), and url_result_thread().
|
static |
Definition at line 3205 of file smsbox.c.
References client(), debug(), http_accept_request(), HTTP_ACCEPTED, HTTP_BAD_REQUEST, http_destroy_cgiargs(), http_destroy_headers(), HTTP_NOT_FOUND, http_send_reply(), immediate_sendsms_reply, info(), octstr_compare(), octstr_create, octstr_destroy(), octstr_get_cstr, sendota_url, sendsms_port, sendsms_reply_hdrs, sendsms_url, smsbox_req_sendota(), smsbox_req_sendsms(), smsbox_sendota_post(), smsbox_sendsms_post(), smsbox_xmlrpc_post(), url, and xmlrpc_url.
Referenced by init_smsbox(), and main().
|
static |
|
static |
Definition at line 3288 of file smsbox.c.
References alog_reopen(), error(), gwthread_shouldhandlesignal(), log_reopen(), shutting_down, and warning().
Referenced by setup_signal_handlers().
|
static |
Definition at line 1965 of file smsbox.c.
References account, ACCOUNT_MAX_LEN, alog(), black_list, black_list_regex, charset, client(), client_dict, coding, DC_7BIT, DC_8BIT, DC_UNDEF, dict_put(), dict_remove(), dlr_mask, dlr_url, does_prefix_match(), error(), from, global_sender, gwlist_append(), gwlist_append_unique(), gwlist_create, gwlist_delete_matching(), gwlist_destroy(), gwlist_extract_first(), gwlist_get(), gwlist_len(), HTTP_ACCEPTED, HTTP_BAD_REQUEST, HTTP_INTERNAL_SERVER_ERROR, immediate_sendsms_reply, info(), MAX_SMS_OCTETS, msg, msg_create, msg_destroy(), mt_push, numhash_find_number(), O_DESTROY, octstr_case_compare(), octstr_copy, octstr_create, octstr_destroy(), octstr_destroy_item(), octstr_duplicate, octstr_format_append(), octstr_get_char(), octstr_get_cstr, octstr_imm(), octstr_item_match(), octstr_len(), octstr_search_chars(), octstr_split_words(), send_message(), sendsms_number_chars, sms_charset_processing(), SMS_PARAM_UNDEFINED, store_uuid(), text, urltrans_allowed_prefix(), urltrans_allowed_prefix_regex(), urltrans_black_list(), urltrans_black_list_regex(), urltrans_default_sender(), urltrans_default_smsc(), urltrans_denied_prefix(), urltrans_denied_prefix_regex(), urltrans_faked_sender(), urltrans_forced_priority(), urltrans_forced_smsc(), urltrans_max_priority(), urltrans_name(), urltrans_username(), urltrans_white_list(), urltrans_white_list_regex(), warning(), white_list, and white_list_regex.
Referenced by smsbox_req_sendsms(), and smsbox_sendsms_post().
|
static |
Definition at line 2825 of file smsbox.c.
References account, authorise_user(), cfg, cfg_get, cfg_get_multi_group(), client(), client_dict, debug(), dict_put(), dict_remove(), error(), found, from, global_sender, gwlist_destroy(), gwlist_extract_first(), HTTP_ACCEPTED, HTTP_BAD_REQUEST, http_cgi_variable(), HTTP_FORBIDDEN, HTTP_INTERNAL_SERVER_ERROR, immediate_sendsms_reply, info(), msg, msg_destroy(), octstr_compare(), octstr_create, octstr_destroy(), octstr_dump, octstr_duplicate, octstr_format(), octstr_get_cstr, octstr_imm(), octstr_len(), ota_pack_message(), ota_tokenize_bookmarks(), ota_tokenize_settings(), send_message(), sendota_url, store_uuid(), urltrans_default_sender(), urltrans_default_smsc(), urltrans_faked_sender(), and urltrans_forced_smsc().
Referenced by sendsms_thread().
|
static |
Definition at line 2517 of file smsbox.c.
References account, authorise_user(), charset, client(), coding, dlr_mask, dlr_url, error(), from, HTTP_BAD_REQUEST, http_cgi_variable(), HTTP_FORBIDDEN, meta_data, octstr_create, octstr_get_cstr, octstr_len(), sendsms_url, SMS_PARAM_UNDEFINED, smsbox_req_handle(), text, and warning().
Referenced by sendsms_thread().
|
static |
Definition at line 3015 of file smsbox.c.
References authorise_username(), charset, client(), client_dict, dict_put(), dict_remove(), error(), from, global_sender, gwlist_len(), HTTP_ACCEPTED, HTTP_BAD_REQUEST, HTTP_FORBIDDEN, http_header_get(), http_header_get_content_type(), HTTP_INTERNAL_SERVER_ERROR, HTTP_UNSUPPORTED_MEDIA_TYPE, immediate_sendsms_reply, info(), msg, msg_destroy(), name, octstr_case_compare(), octstr_create, octstr_destroy(), octstr_duplicate, octstr_format(), octstr_get_cstr, octstr_imm(), octstr_len(), octstr_strip_blanks(), ota_pack_message(), send_message(), sendota_url, store_uuid(), type, urltrans_default_sender(), urltrans_default_smsc(), urltrans_faked_sender(), and urltrans_forced_smsc().
Referenced by sendsms_thread().
|
static |
Definition at line 2630 of file smsbox.c.
References account, authorise_username(), charset, client(), coding, DC_7BIT, DC_8BIT, DC_UNDEF, dlr_mask, dlr_url, error(), from, get_x_kannel_from_headers(), get_x_kannel_from_xml(), html_to_sms(), HTTP_BAD_REQUEST, HTTP_FORBIDDEN, http_header_get_content_type(), HTTP_UNSUPPORTED_MEDIA_TYPE, meta_data, mt_push, octstr_case_compare(), octstr_create, octstr_destroy(), octstr_get_cstr, octstr_imm(), octstr_len(), octstr_strip_blanks(), sendsms_url, SMS_PARAM_UNDEFINED, smsbox_req_handle(), text, and type.
Referenced by sendsms_thread().
|
static |
Definition at line 2756 of file smsbox.c.
References charset, error(), HTTP_BAD_REQUEST, http_header_get_content_type(), method_name, msg, octstr_case_compare(), octstr_destroy(), octstr_format(), octstr_get_cstr, octstr_imm(), type, XMLRPC_COMPILE_OK, xmlrpc_destroy_call, xmlrpc_get_call_name(), xmlrpc_parse_call, xmlrpc_parse_error(), and xmlrpc_parse_status().
Referenced by sendsms_thread().
Definition at line 1944 of file smsbox.c.
References debug(), gw_assert(), immediate_sendsms_reply, msg, octstr_create, octstr_get_cstr, UUID_STR_LEN, and uuid_unparse().
Referenced by smsbox_req_handle(), smsbox_req_sendota(), and smsbox_sendota_post().
Definition at line 526 of file smsbox.c.
References octstr_case_search(), octstr_delete(), octstr_len(), and octstr_truncate().
Referenced by url_result_thread().
|
static |
Definition at line 1064 of file smsbox.c.
References account, alog(), alt_charset, caller, charset, coding, DC_7BIT, DC_8BIT, dlr_mask, dlr_url, error(), fill_message(), from, get_receiver(), get_x_kannel_from_headers(), get_x_kannel_from_xml(), gw_timer_create(), gw_timer_elapsed_start(), html_to_sms(), HTTP_ACCEPTED, http_destroy_headers(), http_header_get_content_type(), HTTP_OK, http_queue_delay, http_receive_result, TimerItem::id, max_http_retries, max_pending_requests, meta_data, method, msg, msg_destroy(), mt_reply, octstr_case_compare(), octstr_destroy(), octstr_duplicate, octstr_get_cstr, octstr_imm(), octstr_len(), octstr_strip_blanks(), remember_receiver(), reply_couldnotfetch, reply_couldnotrepresent, report_mo, retries, semaphore_up(), send_message(), sms_charset_processing(), SMS_PARAM_UNDEFINED, smsbox_http_requests, strip_prefix_and_suffix(), TimerItem::timer, timerset, receiver::trans, type, urltrans_alt_charset(), urltrans_prefix(), and urltrans_suffix().
Referenced by main().
|
static |
Definition at line 125 of file smsbox.c.
Referenced by init_smsbox(), and main().
|
static |
Definition at line 124 of file smsbox.c.
Referenced by init_smsbox(), and main().
|
static |
Definition at line 116 of file smsbox.c.
Referenced by init_smsbox(), and main().
|
static |
Definition at line 117 of file smsbox.c.
Referenced by init_smsbox(), and main().
|
static |
Definition at line 137 of file smsbox.c.
Referenced by init_smsbox(), main(), and smsbox_req_handle().
|
static |
Definition at line 139 of file smsbox.c.
Referenced by create_onetrans(), init_smsbox(), main(), and smsbox_req_handle().
|
static |
Definition at line 442 of file smsbox.c.
Referenced by client_thread(), http_caller_create(), http_caller_destroy(), http_caller_signal_shutdown(), http_get_real(), http_queue_thread(), http_receive_result_real(), http_start_request(), main(), obey_request(), push_thread(), receive_push_reply(), receive_reply(), server_create(), start_push(), start_request(), and url_result_thread().
|
static |
Definition at line 307 of file smsbox.c.
Referenced by main(), and send_message().
|
static |
Definition at line 115 of file smsbox.c.
Referenced by init_smsbox(), main(), and smsbox_req_sendota().
|
static |
Definition at line 159 of file smsbox.c.
Referenced by delayed_http_reply(), main(), smsbox_req_handle(), smsbox_req_sendota(), and smsbox_sendota_post().
|
static |
Definition at line 130 of file smsbox.c.
Referenced by init_smsbox(), main(), obey_request_thread(), smsbox_req_handle(), smsbox_req_sendota(), and smsbox_sendota_post().
|
static |
Definition at line 141 of file smsbox.c.
Referenced by init_smsbox(), main(), and url_result_thread().
|
static |
Definition at line 158 of file smsbox.c.
Referenced by init_smsbox(), read_messages_from_bearerbox(), sendsms_thread(), smsbox_req_handle(), smsbox_req_sendota(), smsbox_sendota_post(), and store_uuid().
|
static |
Definition at line 140 of file smsbox.c.
Referenced by http_queue_thread(), init_smsbox(), main(), and url_result_thread().
|
static |
Definition at line 151 of file smsbox.c.
Referenced by init_smsbox(), main(), obey_request(), and url_result_thread().
|
static |
Definition at line 135 of file smsbox.c.
Referenced by init_smsbox(), and obey_request_thread().
|
static |
Definition at line 443 of file smsbox.c.
Referenced by get_receiver(), main(), outstanding_requests(), and remember_receiver().
|
static |
Definition at line 126 of file smsbox.c.
Referenced by check_args(), and init_smsbox().
|
static |
Definition at line 142 of file smsbox.c.
Referenced by init_smsbox(), main(), obey_request_thread(), and remember_receiver().
|
static |
Definition at line 131 of file smsbox.c.
Referenced by init_smsbox(), main(), and url_result_thread().
|
static |
Definition at line 132 of file smsbox.c.
Referenced by init_smsbox(), main(), and url_result_thread().
|
static |
Definition at line 134 of file smsbox.c.
Referenced by init_smsbox(), main(), and send_message().
|
static |
Definition at line 133 of file smsbox.c.
Referenced by init_smsbox(), main(), and obey_request_thread().
volatile sig_atomic_t restart = 0 |
Definition at line 113 of file smsbox.c.
Referenced by boxc_sender(), main(), and read_messages_from_bearerbox().
|
static |
Definition at line 122 of file smsbox.c.
Referenced by init_smsbox(), main(), sendsms_thread(), smsbox_req_sendota(), and smsbox_sendota_post().
|
static |
Definition at line 119 of file smsbox.c.
Referenced by init_smsbox(), and main().
|
static |
Definition at line 129 of file smsbox.c.
Referenced by init_smsbox(), and smsbox_req_handle().
|
static |
Definition at line 118 of file smsbox.c.
Referenced by init_smsbox(), and sendsms_thread().
|
static |
Definition at line 160 of file smsbox.c.
Referenced by delayed_http_reply(), main(), and sendsms_thread().
|
static |
Definition at line 121 of file smsbox.c.
Referenced by init_smsbox(), main(), sendsms_thread(), smsbox_req_sendsms(), and smsbox_sendsms_post().
|
static |
Definition at line 128 of file smsbox.c.
Referenced by init_smsbox(), and send_message().
|
static |
Definition at line 145 of file smsbox.c.
Referenced by http_queue_thread(), main(), and url_result_thread().
|
static |
Definition at line 120 of file smsbox.c.
Referenced by create_session(), identify_to_bearerbox(), init_smsbox(), main(), make_unit_push_request(), send_message(), set_smsbox_id(), and wap_push_ppg_pushuser_smsbox_id_get().
|
static |
Definition at line 144 of file smsbox.c.
Referenced by main(), obey_request_thread(), and read_messages_from_bearerbox().
|
static |
Definition at line 148 of file smsbox.c.
Referenced by main(), and url_result_thread().
|
static |
Definition at line 127 of file smsbox.c.
Referenced by authorise_user(), authorise_username(), main(), and obey_request_thread().
|
static |
Definition at line 136 of file smsbox.c.
Referenced by init_smsbox(), main(), and smsbox_req_handle().
|
static |
Definition at line 138 of file smsbox.c.
Referenced by create_onetrans(), init_smsbox(), main(), and smsbox_req_handle().
|
static |
Definition at line 123 of file smsbox.c.
Referenced by init_smsbox(), main(), and sendsms_thread().