Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include "gwlib/gwlib.h"
#include "msg.h"
#include "smsc_p.h"
#include "smasi_pdu.h"
#include "smscconn_p.h"
#include "bb_smscconn_cb.h"
#include "sms.h"
#include "dlr.h"
Go to the source code of this file.
Data Structures | |
struct | SMASI |
Macros | |
#define | DEBUG 1 |
#define | SMASI_DEFAULT_PORT 21500 |
#define | SMASI_DEFAULT_PRIORITY 0 |
#define | MAX_PENDING_SUBMITS 10 |
#define | SMASI_THROTTLING_SLEEP_TIME 15 |
#define | SMASI_ENQUIRE_LINK_INTERVAL 30.0 |
#define | SMASI_OVERRIDE_SOURCE_TON 1 |
#define | SMASI_OVERRIDE_SOURCE_NPI -1 |
#define | SMASI_OVERRIDE_DEST_TON -1 |
#define | SMASI_OVERRIDE_DEST_NPI -1 |
Functions | |
static void | dump_pdu (const char *msg, Octstr *id, SMASI_PDU *pdu) |
static SMASI * | smasi_create (SMSCConn *conn) |
static void | smasi_destroy (SMASI *smasi) |
static void | escape_data (Octstr *data) |
static void | unescape_data (Octstr *data) |
static void | encode_binary_data (Octstr *data) |
static void | decode_binary_data (Octstr *data) |
static Octstr * | get_ton_npi_value (int override, int message) |
static Octstr * | get_source_addr_ton (SMASI *smasi, Msg *msg) |
static Octstr * | get_source_addr_npi (SMASI *smasi, Msg *msg) |
static Octstr * | get_dest_addr_ton (SMASI *smasi, Msg *msg) |
static Octstr * | get_dest_addr_npi (SMASI *smasi, Msg *msg) |
static Octstr * | get_originator_type (SMASI *smasi, Octstr *originator) |
static SMASI_PDU * | msg_to_pdu (SMASI *smasi, Msg *msg) |
static Msg * | pdu_to_msg (SMASI_PDU *pdu) |
static void | send_logoff (SMASI *smasi, Connection *conn) |
static void | send_enquire_link (SMASI *smasi, Connection *conn, long *last_sent) |
static int | send_pdu (Connection *conn, Octstr *id, SMASI_PDU *pdu) |
static int | read_pdu (SMASI *smasi, Connection *conn, SMASI_PDU **pdu) |
static void | handle_pdu (SMASI *smasi, Connection *conn, SMASI_PDU *pdu, long *pending_submits) |
static Connection * | open_connection (SMASI *smasi) |
static void | send_messages (SMASI *smasi, Connection *conn, long *pending_submits) |
static void | smasi_thread (void *arg) |
static long | queued_cb (SMSCConn *conn) |
static int | send_msg_cb (SMSCConn *conn, Msg *msg) |
static int | shutdown_cb (SMSCConn *conn, int finish_sending) |
static int | init_configuration (SMASI *smasi, CfgGroup *config) |
int | smsc_smasi_create (SMSCConn *conn, CfgGroup *config) |
Variables | |
static Octstr * | colon = NULL |
static Octstr * | assign = NULL |
static Octstr * | comma = NULL |
static Octstr * | cr = NULL |
static Octstr * | lf = NULL |
#define DEBUG 1 |
Definition at line 91 of file smsc_smasi.c.
#define MAX_PENDING_SUBMITS 10 |
Definition at line 110 of file smsc_smasi.c.
Referenced by send_messages().
#define SMASI_DEFAULT_PORT 21500 |
Definition at line 108 of file smsc_smasi.c.
Referenced by init_configuration().
#define SMASI_DEFAULT_PRIORITY 0 |
Definition at line 109 of file smsc_smasi.c.
Referenced by init_configuration().
#define SMASI_ENQUIRE_LINK_INTERVAL 30.0 |
Definition at line 112 of file smsc_smasi.c.
Referenced by init_configuration().
#define SMASI_OVERRIDE_DEST_NPI -1 |
Definition at line 128 of file smsc_smasi.c.
Referenced by init_configuration().
#define SMASI_OVERRIDE_DEST_TON -1 |
Definition at line 127 of file smsc_smasi.c.
Referenced by init_configuration().
#define SMASI_OVERRIDE_SOURCE_NPI -1 |
Definition at line 126 of file smsc_smasi.c.
Referenced by init_configuration().
#define SMASI_OVERRIDE_SOURCE_TON 1 |
Definition at line 125 of file smsc_smasi.c.
Referenced by init_configuration().
#define SMASI_THROTTLING_SLEEP_TIME 15 |
Definition at line 111 of file smsc_smasi.c.
Referenced by smasi_thread().
|
static |
Definition at line 341 of file smsc_smasi.c.
References check(), error(), octstr_append_char(), octstr_create, octstr_delete(), octstr_destroy(), octstr_get_char(), octstr_hex_to_binary(), octstr_insert(), and octstr_len().
Referenced by pdu_to_msg().
Definition at line 96 of file smsc_smasi.c.
References debug(), msg, octstr_get_cstr, and smasi_pdu_dump().
Referenced by send_enquire_link(), send_logoff(), send_pdu(), and smasi_thread().
|
static |
Definition at line 305 of file smsc_smasi.c.
References octstr_append(), octstr_append_char(), octstr_create, octstr_delete(), octstr_destroy(), octstr_get_char(), and octstr_len().
Referenced by msg_to_pdu().
|
static |
Definition at line 229 of file smsc_smasi.c.
References assign, check(), colon, comma, cr, lf, octstr_delete(), octstr_get_char(), octstr_insert(), and octstr_len().
Referenced by msg_to_pdu().
Definition at line 431 of file smsc_smasi.c.
References SMASI::dest_addr_npi, get_ton_npi_value(), and GSM_ADDR_NPI_E164.
Referenced by msg_to_pdu().
Definition at line 419 of file smsc_smasi.c.
References SMASI::dest_addr_ton, get_ton_npi_value(), and GSM_ADDR_TON_INTERNATIONAL.
Referenced by msg_to_pdu().
Definition at line 442 of file smsc_smasi.c.
References GSM_ADDR_TON_ALPHANUMERIC, GSM_ADDR_TON_INTERNATIONAL, gw_isdigit(), octstr_check_range(), octstr_delete(), octstr_format(), and octstr_get_char().
Referenced by msg_to_pdu().
Definition at line 407 of file smsc_smasi.c.
References get_ton_npi_value(), GSM_ADDR_NPI_E164, and SMASI::source_addr_npi.
Referenced by msg_to_pdu().
Definition at line 395 of file smsc_smasi.c.
References get_ton_npi_value(), GSM_ADDR_TON_INTERNATIONAL, and SMASI::source_addr_ton.
Referenced by msg_to_pdu().
|
static |
Definition at line 378 of file smsc_smasi.c.
References debug(), and octstr_format().
Referenced by get_dest_addr_npi(), get_dest_addr_ton(), get_source_addr_npi(), and get_source_addr_ton().
|
static |
Definition at line 711 of file smsc_smasi.c.
References bb_smscconn_connected(), bb_smscconn_receive(), bb_smscconn_send_failed(), bb_smscconn_sent(), SMASI::conn, smscconn::connect_time, debug(), dict_remove(), error(), smscconn::id, info(), SMASI::logged_off, msg, msg_dump(), SMASI::my_number, octstr_create, octstr_destroy(), octstr_duplicate, octstr_get_cstr, octstr_len(), pdu_to_msg(), send_pdu(), SMASI::sent_msgs, smasi_pdu_create(), smasi_pdu_destroy(), SMSCCONN_ACTIVE, SMSCCONN_FAILED_REJECTED, smscconn::status, SMASI_PDU::type, SMASI_PDU::type_name, SMASI_PDU::u, and warning().
Referenced by smasi_thread().
Definition at line 1071 of file smsc_smasi.c.
References cfg_get, cfg_get_integer(), SMASI::conn, smscconn::data, SMASI::dest_addr_npi, SMASI::dest_addr_ton, SMASI::enquire_link_interval, error(), SMASI::host, smscconn::id, SMASI::my_number, smscconn::name, octstr_duplicate, octstr_format(), octstr_imm(), SMASI::password, SMASI::port, SMASI::priority, SMASI_DEFAULT_PORT, SMASI_DEFAULT_PRIORITY, SMASI_ENQUIRE_LINK_INTERVAL, SMASI_OVERRIDE_DEST_NPI, SMASI_OVERRIDE_DEST_TON, SMASI_OVERRIDE_SOURCE_NPI, SMASI_OVERRIDE_SOURCE_TON, SMASI::source_addr_npi, SMASI::source_addr_ton, and SMASI::username.
Referenced by smsc_smasi_create().
Definition at line 467 of file smsc_smasi.c.
References counter_increase(), DC_7BIT, DC_8BIT, DC_UCS2, DC_UNDEF, encode_binary_data(), escape_data(), get_dest_addr_npi(), get_dest_addr_ton(), get_originator_type(), get_source_addr_npi(), get_source_addr_ton(), MC_UNDEF, SMASI::message_id_counter, msg, octstr_create, octstr_delete(), octstr_destroy(), octstr_duplicate, octstr_format(), octstr_get_char(), octstr_len(), SMASI::priority, smasi_pdu_create(), SMS_PARAM_UNDEFINED, and SMASI_PDU::u.
Referenced by send_messages().
|
static |
Definition at line 843 of file smsc_smasi.c.
References SMASI::conn, conn_open_tcp_with_port(), counter_increase(), error(), SMASI::host, smscconn::id, SMASI::message_id_counter, octstr_duplicate, octstr_get_cstr, smscconn::our_host, SMASI::password, SMASI::port, send_pdu(), smasi_pdu_create(), smasi_pdu_destroy(), SMASI_PDU::u, and SMASI::username.
Referenced by smasi_thread().
Definition at line 552 of file smsc_smasi.c.
References DC_7BIT, DC_8BIT, DC_UCS2, decode_binary_data(), gw_assert(), MC_UNDEF, msg, msg_create, octstr_duplicate, octstr_len(), octstr_parse_long(), octstr_str_compare(), SMS_PARAM_UNDEFINED, SMASI_PDU::type, SMASI_PDU::u, and unescape_data().
Referenced by handle_pdu().
|
static |
Definition at line 1012 of file smsc_smasi.c.
References smscconn::data, gwlist_len(), smscconn::load, SMASI::msgs_to_send, SMSCCONN_DEAD, and smscconn::status.
Referenced by smsc_smasi_create().
|
static |
Definition at line 685 of file smsc_smasi.c.
References SMASI::conn, conn_eof(), conn_error(), debug(), error(), smscconn::id, octstr_destroy(), octstr_dump, octstr_get_cstr, smasi_pdu_read(), and smasi_pdu_unpack().
Referenced by smasi_thread().
|
static |
Definition at line 646 of file smsc_smasi.c.
References SMASI::conn, conn_write(), date_universal_now(), dump_pdu(), smscconn::id, octstr_destroy(), smasi_pdu_create(), smasi_pdu_destroy(), and smasi_pdu_pack().
Referenced by smasi_thread().
|
static |
Definition at line 628 of file smsc_smasi.c.
References SMASI::conn, conn_write(), counter_increase(), dump_pdu(), smscconn::id, SMASI::message_id_counter, octstr_create, octstr_destroy(), smasi_pdu_create(), smasi_pdu_destroy(), smasi_pdu_pack(), and SMASI_PDU::u.
Referenced by smasi_thread().
|
static |
Definition at line 868 of file smsc_smasi.c.
References SMASI::conn, delay, dict_put(), gwlist_extract_first(), gwthread_sleep(), smscconn::id, MAX_PENDING_SUBMITS, msg, msg_to_pdu(), SMASI::msgs_to_send, send_pdu(), SMASI::sent_msgs, smasi_pdu_destroy(), smscconn::throughput, and SMASI_PDU::u.
Referenced by smasi_thread().
Definition at line 1023 of file smsc_smasi.c.
References smscconn::data, gwlist_produce(), gwthread_wakeup(), msg, msg_duplicate(), SMASI::msgs_to_send, and SMASI::thread_handle.
Referenced by smsc_smasi_create().
|
static |
Definition at line 665 of file smsc_smasi.c.
References conn_write(), dump_pdu(), octstr_destroy(), and smasi_pdu_pack().
Referenced by handle_pdu(), open_connection(), and send_messages().
|
static |
Definition at line 1034 of file smsc_smasi.c.
References assign, bb_smscconn_killed(), colon, comma, cr, smscconn::data, debug(), gwthread_join(), gwthread_wakeup(), lf, smscconn::name, octstr_destroy(), octstr_get_cstr, SMASI::quitting, smasi_destroy(), SMSCCONN_DEAD, SMSCCONN_KILLED_SHUTDOWN, smscconn::status, SMASI::thread_handle, and smscconn::why_killed.
Referenced by smsc_smasi_create().
Definition at line 159 of file smsc_smasi.c.
References SMASI::conn, counter_create(), SMASI::dest_addr_npi, SMASI::dest_addr_ton, dict_create(), SMASI::enquire_link_interval, gwlist_add_producer(), gwlist_create, SMASI::host, SMASI::logged_off, SMASI::message_id_counter, SMASI::msgs_to_send, SMASI::my_number, SMASI::password, SMASI::port, SMASI::priority, SMASI::quitting, SMASI::received_msgs, SMASI::sent_msgs, SMASI::source_addr_npi, SMASI::source_addr_ton, SMASI::thread_handle, SMASI::throttling_err_time, and SMASI::username.
Referenced by smsc_smasi_create().
|
static |
Definition at line 192 of file smsc_smasi.c.
References counter_destroy(), dict_destroy(), gwlist_destroy(), SMASI::host, SMASI::message_id_counter, msg_destroy_item(), SMASI::msgs_to_send, octstr_destroy(), SMASI::password, SMASI::received_msgs, SMASI::sent_msgs, and SMASI::username.
Referenced by shutdown_cb(), and smsc_smasi_create().
|
static |
Definition at line 911 of file smsc_smasi.c.
References SMASI::conn, conn_destroy(), conn_wait(), date_universal_now(), dump_pdu(), SMASI::enquire_link_interval, error(), gwthread_sleep(), handle_pdu(), smscconn::id, smscconn::log_idx, log_thread_to(), SMASI::logged_off, octstr_get_cstr, open_connection(), SMASI::quitting, read_pdu(), smscconn::reconnect_delay, send_enquire_link(), send_logoff(), send_messages(), smasi_pdu_destroy(), SMASI_THROTTLING_SLEEP_TIME, SMSCCONN_RECONNECTING, smscconn::status, and SMASI::throttling_err_time.
Referenced by smsc_smasi_create().
Definition at line 1129 of file smsc_smasi.c.
References assign, colon, comma, SMASI::conn, cr, smscconn::data, error(), gwthread_create, smscconn::id, init_configuration(), lf, octstr_create, octstr_get_cstr, panic, smscconn::queued, queued_cb(), smscconn::send_msg, send_msg_cb(), smscconn::shutdown, shutdown_cb(), smasi_create(), smasi_destroy(), smasi_thread(), SMSCCONN_CONNECTING, smscconn::status, and SMASI::thread_handle.
Referenced by smscconn_create().
|
static |
Definition at line 267 of file smsc_smasi.c.
References check(), octstr_delete(), octstr_get_char(), octstr_insert_data(), and octstr_len().
Referenced by pdu_to_msg().
|
static |
Definition at line 219 of file smsc_smasi.c.
Referenced by escape_data(), shutdown_cb(), and smsc_smasi_create().
|
static |
Definition at line 218 of file smsc_smasi.c.
Referenced by escape_data(), get_header_value(), header_is_called(), http_header_get(), http_header_value(), parse_url(), shutdown_cb(), skip_until_after_colon(), and smsc_smasi_create().
|
static |
Definition at line 220 of file smsc_smasi.c.
Referenced by escape_data(), handle_two_terminators(), shutdown_cb(), and smsc_smasi_create().
|
static |
Definition at line 221 of file smsc_smasi.c.
Referenced by escape_data(), shutdown_cb(), and smsc_smasi_create().
|
static |
Definition at line 222 of file smsc_smasi.c.
Referenced by escape_data(), init_bearerbox(), init_smsbox(), init_wapbox(), shutdown_cb(), and smsc_smasi_create().