Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
#include <stdarg.h>
#include <stdlib.h>
#include <strings.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/param.h>
#include <sys/ioctl.h>
#include "gwlib/gwlib.h"
#include "smsc.h"
#include "smsc_p.h"
#include "alt_charsets.h"
#include "sms.h"
Go to the source code of this file.
Macros | |
#define | CRTSCTS 0 |
Functions | |
static int | get_data (SMSCenter *smsc, char *buff, int length) |
static int | put_data (SMSCenter *smsc, char *buff, int length, int is_backup) |
static int | memorybuffer_append_data (SMSCenter *smsc, char *buff, int length) |
static int | memorybuffer_insert_data (SMSCenter *smsc, char *buff, int length) |
static int | memorybuffer_has_rawmessage (SMSCenter *smsc, int type, char auth) |
static int | memorybuffer_cut_rawmessage (SMSCenter *smsc, char *buff, int length) |
static int | parse_rawmessage_to_msg (SMSCenter *smsc, Msg **msg, char *rawmessage, int length) |
static int | parse_msg_to_rawmessage (SMSCenter *smsc, Msg *msg, char *rawmessage, int length) |
static int | acknowledge_from_rawmessage (SMSCenter *smsc, char *rawmessage, int length) |
static int | parse_emi_to_iso88591 (char *from, char *to, int length, int alt_charset) |
static int | parse_iso88591_to_emi (char *from, char *to, int length, int alt_charset) |
static int | parse_binary_to_emi (char *from, char *to, int length) |
static int | at_dial (char *device, char *phonenum, char *at_prefix, time_t how_long) |
static int | guarantee_link (SMSCenter *smsc) |
static void | generate_checksum (const unsigned char *buffer, unsigned char *checksum_out) |
static int | wait_for_ack (SMSCenter *smsc, int op_type) |
static char | char_iso_to_sms (unsigned char from, int alt_charset) |
static char | char_sms_to_iso (unsigned char from, int alt_charset) |
static int | emi_open_connection (SMSCenter *smsc) |
SMSCenter * | emi_open (char *phonenum, char *serialdevice, char *username, char *password) |
int | emi_reopen (SMSCenter *smsc) |
int | emi_close (SMSCenter *smsc) |
static int | emi_fill_ucp60_login (char *buf, char *OAdC, char *passwd) |
static int | emi_open_session (SMSCenter *smsc) |
static int | emi_open_connection_ip (SMSCenter *smsc) |
int | emi_reopen_ip (SMSCenter *smsc) |
int | emi_close_ip (SMSCenter *smsc) |
int | emi_pending_smsmessage (SMSCenter *smsc) |
int | emi_submit_msg (SMSCenter *smsc, Msg *omsg) |
int | emi_receive_msg (SMSCenter *smsc, Msg **tmsg) |
#define CRTSCTS 0 |
Definition at line 88 of file smsc_emi_x25.c.
Referenced by at2_open_device(), and at_dial().
|
static |
Definition at line 964 of file smsc_emi_x25.c.
References debug(), SMSCenter::emi_current_msg_number, generate_checksum(), and put_data().
Referenced by emi_receive_msg().
|
static |
Definition at line 472 of file smsc_emi_x25.c.
References CRTSCTS, debug(), error(), info(), and kannel_cfmakeraw().
Referenced by emi_open_connection().
|
static |
Definition at line 1235 of file smsc_emi_x25.c.
References alt_charset, EMI_SWAPPED_CHARS, and from.
Referenced by parse_iso88591_to_emi().
|
static |
Definition at line 1511 of file smsc_emi_x25.c.
References from.
Referenced by parse_emi_to_iso88591().
int emi_close | ( | SMSCenter * | smsc | ) |
Definition at line 194 of file smsc_emi_x25.c.
References emi_close_ip().
Referenced by emi_reopen(), and smsc_close().
int emi_close_ip | ( | SMSCenter * | smsc | ) |
Definition at line 302 of file smsc_emi_x25.c.
References SMSCenter::emi_fd, and info().
Referenced by emi_close(), and emi_reopen_ip().
|
static |
Definition at line 199 of file smsc_emi_x25.c.
References error(), and parse_binary_to_emi().
Referenced by emi_open_session().
SMSCenter* emi_open | ( | char * | phonenum, |
char * | serialdevice, | ||
char * | username, | ||
char * | password | ||
) |
Definition at line 153 of file smsc_emi_x25.c.
References SMSCenter::emi_current_msg_number, emi_open_connection(), SMSCenter::emi_password, SMSCenter::emi_phonenum, SMSCenter::emi_serialdevice, SMSCenter::emi_username, error(), SMSCenter::name, password, SMSC_TYPE_EMI_X25, smscenter_construct(), smscenter_destruct(), SMSCenter::type, and username.
Referenced by smsc_open().
|
static |
Definition at line 138 of file smsc_emi_x25.c.
References at_dial(), SMSCenter::emi_fd, SMSCenter::emi_phonenum, and SMSCenter::emi_serialdevice.
Referenced by emi_open(), emi_reopen(), and guarantee_link().
|
static |
Definition at line 276 of file smsc_emi_x25.c.
References SMSCenter::emi_fd, SMSCenter::emi_hostname, emi_open_session(), SMSCenter::emi_our_port, SMSCenter::emi_password, SMSCenter::emi_port, SMSCenter::emi_username, and tcpip_connect_to_server_with_port().
Referenced by emi_reopen_ip().
|
static |
Definition at line 225 of file smsc_emi_x25.c.
References debug(), SMSCenter::emi_current_msg_number, emi_fill_ucp60_login(), SMSCenter::emi_password, SMSCenter::emi_username, error(), generate_checksum(), info(), put_data(), and wait_for_ack().
Referenced by emi_open_connection_ip().
int emi_pending_smsmessage | ( | SMSCenter * | smsc | ) |
Definition at line 319 of file smsc_emi_x25.c.
References get_data(), guarantee_link(), memorybuffer_cut_rawmessage(), memorybuffer_has_rawmessage(), and memorybuffer_insert_data().
Referenced by smscenter_pending_smsmessage().
Definition at line 408 of file smsc_emi_x25.c.
References acknowledge_from_rawmessage(), error(), memorybuffer_cut_rawmessage(), msg, msg_destroy(), and parse_rawmessage_to_msg().
Referenced by smscenter_receive_msg().
int emi_reopen | ( | SMSCenter * | smsc | ) |
Definition at line 183 of file smsc_emi_x25.c.
References emi_close(), emi_open_connection(), and error().
Referenced by smsc_reopen().
int emi_reopen_ip | ( | SMSCenter * | smsc | ) |
Definition at line 294 of file smsc_emi_x25.c.
References emi_close_ip(), and emi_open_connection_ip().
Definition at line 372 of file smsc_emi_x25.c.
References debug(), error(), info(), parse_msg_to_rawmessage(), put_data(), and wait_for_ack().
Referenced by smscenter_submit_msg().
|
static |
Definition at line 1213 of file smsc_emi_x25.c.
Referenced by acknowledge_from_rawmessage(), emi_open_session(), and parse_msg_to_rawmessage().
|
static |
Definition at line 660 of file smsc_emi_x25.c.
References SMSCenter::buffer, debug(), SMSCenter::emi_backup_allow_ip, SMSCenter::emi_backup_fd, SMSCenter::emi_fd, SMSCenter::emi_secondary_fd, error(), host_ip(), info(), is_allowed_ip(), octstr_create, octstr_destroy(), octstr_get_cstr, octstr_imm(), SMSC_TYPE_EMI_X25, and SMSCenter::type.
Referenced by emi_pending_smsmessage(), and wait_for_ack().
|
static |
Definition at line 449 of file smsc_emi_x25.c.
References SMSCenter::buffer, SMSCenter::buflen, SMSCenter::bufsize, and emi_open_connection().
Referenced by emi_pending_smsmessage().
|
static |
Definition at line 794 of file smsc_emi_x25.c.
References SMSCenter::buffer, SMSCenter::buflen, and SMSCenter::bufsize.
Referenced by wait_for_ack().
|
static |
Definition at line 857 of file smsc_emi_x25.c.
References SMSCenter::buffer, SMSCenter::buflen, SMSCenter::bufsize, and error().
Referenced by emi_pending_smsmessage(), emi_receive_msg(), and wait_for_ack().
|
static |
Definition at line 828 of file smsc_emi_x25.c.
References SMSCenter::buffer, SMSCenter::buflen, debug(), and type.
Referenced by emi_pending_smsmessage(), and wait_for_ack().
|
static |
Definition at line 811 of file smsc_emi_x25.c.
References SMSCenter::buffer, SMSCenter::buflen, and SMSCenter::bufsize.
Referenced by emi_pending_smsmessage().
|
static |
Definition at line 1191 of file smsc_emi_x25.c.
References from.
Referenced by emi_fill_ucp60_login(), and parse_msg_to_rawmessage().
|
static |
Definition at line 1144 of file smsc_emi_x25.c.
References alt_charset, char_sms_to_iso(), and from.
Referenced by parse_rawmessage_to_msg().
|
static |
Definition at line 1166 of file smsc_emi_x25.c.
References alt_charset, char_iso_to_sms(), debug(), and from.
Referenced by parse_msg_to_rawmessage().
|
static |
Definition at line 1032 of file smsc_emi_x25.c.
References SMSCenter::alt_charset, DC_7BIT, DC_UNDEF, debug(), SMSCenter::emi_current_msg_number, generate_checksum(), msg, octstr_get_char(), octstr_get_cstr, octstr_get_many_chars(), octstr_len(), parse_binary_to_emi(), parse_iso88591_to_emi(), SMSC_TYPE_EMI_X25, and SMSCenter::type.
Referenced by emi_submit_msg().
|
static |
Definition at line 895 of file smsc_emi_x25.c.
References SMSCenter::alt_charset, error(), msg, msg_create, octstr_create, and parse_emi_to_iso88591().
Referenced by emi_receive_msg().
|
static |
Definition at line 755 of file smsc_emi_x25.c.
References SMSCenter::emi_fd, error(), SMSC_TYPE_EMI_X25, and SMSCenter::type.
Referenced by acknowledge_from_rawmessage(), emi_open_session(), and emi_submit_msg().
|
static |
Definition at line 621 of file smsc_emi_x25.c.
References debug(), found, get_data(), memorybuffer_append_data(), memorybuffer_cut_rawmessage(), memorybuffer_has_rawmessage(), and start.
Referenced by emi_open_session(), and emi_submit_msg().