Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include "gwlib/gwlib.h"
#include "gw/msg.h"
Go to the source code of this file.
Data Structures | |
struct | client_status |
Macros | |
#define | WSP_VERSION 0x10 |
#define | TIMEOUT 10.0 /* seconds */ |
Typedefs | |
typedef struct client_status | Client |
Enumerations | |
enum | wsp_types { Bad_PDU = -1, Connect_PDU = 0x01, ConnectReply_PDU = 0x02, Redirect_PDU = 0x03, Reply_PDU = 0x04, Disconnect_PDU = 0x05, Push_PDU = 0x06, ConfirmedPush_PDU = 0x07, Suspend_PDU = 0x08, Resume_PDU = 0x09, Get_PDU = 0x40, Options_PDU = 0x41, Head_PDU = 0x42, Delete_PDU = 0x43, Trace_PDU = 0x44, Post_PDU = 0x60, Put_PDU = 0x61 } |
enum | wtp_types { INVOKE = 1, RESULT = 2, ACK = 3 } |
enum | WTP_type { TR_Invoke = 1, TR_Result = 2, TR_Ack = 3, TR_Abort = 4 } |
Functions | |
static unsigned long | get_varint (Octstr *pdu, int pos) |
static void | http_thread (void *arg) |
static int | start_http_thread (void) |
static Connection * | start_wapbox (void) |
static void | initialize_clients (void) |
static void | destroy_clients (void) |
static Client * | find_client (unsigned short port) |
static void | client_done (Client *client) |
static void | increment_tid (Client *client) |
static void | set_user_ack (Octstr *pdu) |
static Octstr * | wtp_invoke_create (int class) |
static Octstr * | wtp_ack_create (void) |
static void | add_wsp_connect (Octstr *pdu) |
static void | add_wsp_get (Octstr *pdu) |
static void | add_wsp_disconnect (Octstr *pdu, long session_id) |
static void | set_tid (Octstr *pdu, int tid) |
static int | get_tid (Octstr *pdu) |
static int | wtp_type (Octstr *pdu) |
static Msg * | wdp_create (Octstr *data, Client *client) |
static void | send_pdu (Octstr *pdu, Connection *boxc, Client *client) |
static void | send_invoke_connect (Connection *boxc, Client *client) |
static void | send_invoke_get (Connection *boxc, Client *client) |
static void | record_disconnect (Client *client) |
static void | send_invoke_disconnect (Connection *boxc, Client *client) |
static void | handle_connect_reply (Connection *boxc, Client *client, Octstr *pdu) |
static void | handle_get_reply (Connection *boxc, Client *client, Octstr *pdu) |
static void | handle_reply (Connection *boxc, Msg *reply) |
static void | start_request (Connection *boxc, Client *client) |
static long | run_requests (Connection *boxc) |
static void | help (void) |
int | main (int argc, char **argv) |
Variables | |
static long | max_requests = 1 |
static long | max_clients = 1 |
static long | req_per_session = 1 |
static unsigned short | http_port |
static int | wapbox_port = 30188 |
static Octstr * | http_url = NULL |
static int | verbose_debug = 0 |
static int | user_ack = 0 |
static long | requests_complete = 0 |
static volatile sig_atomic_t | dying = 0 |
static Client * | clients |
List * | ready_clients |
static long | http_thread_id |
#define TIMEOUT 10.0 /* seconds */ |
Definition at line 108 of file drive_wapbox.c.
Referenced by main(), and run_requests().
#define WSP_VERSION 0x10 |
Definition at line 106 of file drive_wapbox.c.
Referenced by add_wsp_connect().
typedef struct client_status Client |
Definition at line 150 of file drive_wapbox.c.
enum wsp_types |
Definition at line 80 of file drive_wapbox.c.
enum WTP_type |
Enumerator | |
---|---|
TR_Invoke | |
TR_Result | |
TR_Ack | |
TR_Abort |
Definition at line 123 of file drive_wapbox.c.
enum wtp_types |
Enumerator | |
---|---|
INVOKE | |
RESULT | |
ACK |
Definition at line 100 of file drive_wapbox.c.
|
static |
Definition at line 316 of file drive_wapbox.c.
References Connect_PDU, octstr_append_data(), and WSP_VERSION.
Referenced by send_invoke_connect().
|
static |
Definition at line 346 of file drive_wapbox.c.
References Disconnect_PDU, octstr_append_char(), and octstr_append_uintvar().
Referenced by send_invoke_disconnect().
|
static |
Definition at line 330 of file drive_wapbox.c.
References Get_PDU, http_port, http_url, octstr_append(), octstr_append_char(), octstr_append_uintvar(), octstr_destroy(), octstr_format(), and octstr_len().
Referenced by send_invoke_get().
|
static |
Definition at line 278 of file drive_wapbox.c.
References client(), gwlist_append(), ready_clients, and requests_complete.
Referenced by handle_get_reply(), handle_reply(), and send_invoke_disconnect().
|
static |
Definition at line 265 of file drive_wapbox.c.
References clients, gwlist_destroy(), and ready_clients.
Referenced by main().
|
static |
Definition at line 270 of file drive_wapbox.c.
References clients, max_clients, and port.
Referenced by handle_reply().
|
static |
Definition at line 363 of file drive_wapbox.c.
References octstr_get_bits().
Referenced by handle_reply().
|
static |
Definition at line 155 of file drive_wapbox.c.
References octstr_get_char().
Referenced by handle_connect_reply().
|
static |
Definition at line 461 of file drive_wapbox.c.
References client(), ConnectReply_PDU, error(), get_varint(), gw_assert(), increment_tid(), octstr_destroy(), octstr_dump, octstr_get_char(), send_invoke_get(), send_pdu(), set_tid(), and wtp_ack_create().
Referenced by handle_reply().
|
static |
Definition at line 487 of file drive_wapbox.c.
References client(), client_done(), error(), gw_assert(), increment_tid(), octstr_destroy(), octstr_dump, octstr_get_char(), Reply_PDU, req_per_session, send_invoke_disconnect(), send_pdu(), set_tid(), and wtp_ack_create().
Referenced by handle_reply().
|
static |
Definition at line 516 of file drive_wapbox.c.
References ACK, client(), client_done(), debug(), error(), find_client(), get_tid(), gw_assert(), handle_connect_reply(), handle_get_reply(), octstr_dump, panic, record_disconnect(), reply(), RESULT, type, verbose_debug, and wtp_type().
Referenced by run_requests().
|
static |
|
static |
Definition at line 167 of file drive_wapbox.c.
References client(), dying, gwlist_append(), gwlist_create, http_accept_request(), http_destroy_cgiargs(), http_destroy_headers(), HTTP_OK, http_send_reply(), octstr_create, octstr_destroy(), port, and url.
Referenced by start_http_thread().
|
static |
Definition at line 283 of file drive_wapbox.c.
References client().
Referenced by handle_connect_reply(), handle_get_reply(), and record_disconnect().
|
static |
Definition at line 248 of file drive_wapbox.c.
References clients, gwlist_append(), gwlist_create, max_clients, client_status::pages_fetched, client_status::port, ready_clients, client_status::wsp_connected, client_status::wsp_session_id, client_status::wtp_invoked, and client_status::wtp_tid.
Referenced by main().
int main | ( | int | argc, |
char ** | argv | ||
) |
Definition at line 643 of file drive_wapbox.c.
References conn_destroy(), destroy_clients(), dying, error(), getopt(), gwlib_init(), gwlib_shutdown(), gwthread_join(), help(), http_close_all_ports(), http_port, http_thread_id, http_url, info(), initialize_clients(), log_set_output_level(), max_clients, max_requests, octstr_create, octstr_destroy(), optarg, panic, req_per_session, run_requests(), start, start_http_thread(), start_wapbox(), TIMEOUT, user_ack, verbose_debug, and wapbox_port.
|
static |
Definition at line 435 of file drive_wapbox.c.
References client(), and increment_tid().
Referenced by handle_reply(), and send_invoke_disconnect().
|
static |
Definition at line 589 of file drive_wapbox.c.
References client(), conn_eof(), conn_read_withlen(), conn_wait(), gwlist_extract_first(), handle_reply(), info(), max_requests, msg, msg_destroy(), msg_unpack, octstr_destroy(), octstr_dump, panic, ready_clients, requests_complete, start_request(), and TIMEOUT.
Referenced by main().
|
static |
Definition at line 401 of file drive_wapbox.c.
References add_wsp_connect(), client(), gw_assert(), octstr_destroy(), send_pdu(), set_tid(), and wtp_invoke_create().
Referenced by start_request().
|
static |
Definition at line 442 of file drive_wapbox.c.
References add_wsp_disconnect(), client(), client_done(), gw_assert(), octstr_destroy(), record_disconnect(), send_pdu(), set_tid(), and wtp_invoke_create().
Referenced by handle_get_reply().
|
static |
Definition at line 418 of file drive_wapbox.c.
References add_wsp_get(), client(), gw_assert(), octstr_destroy(), send_pdu(), set_tid(), and wtp_invoke_create().
Referenced by handle_connect_reply(), and start_request().
|
static |
Definition at line 384 of file drive_wapbox.c.
References client(), conn_write_withlen(), debug(), msg, msg_destroy(), msg_pack(), octstr_destroy(), octstr_dump, verbose_debug, and wdp_create().
Referenced by handle_connect_reply(), handle_get_reply(), send_invoke_connect(), send_invoke_disconnect(), and send_invoke_get().
|
static |
Definition at line 351 of file drive_wapbox.c.
References octstr_get_char(), and octstr_set_char().
Referenced by handle_connect_reply(), handle_get_reply(), send_invoke_connect(), send_invoke_disconnect(), and send_invoke_get().
|
static |
Definition at line 291 of file drive_wapbox.c.
References octstr_set_bits().
Referenced by wtp_invoke_create().
|
static |
Definition at line 211 of file drive_wapbox.c.
References gwthread_create, http_open_port(), http_thread(), http_thread_id, panic, port, and ssl.
Referenced by main().
|
static |
Definition at line 577 of file drive_wapbox.c.
References client(), gw_assert(), send_invoke_connect(), and send_invoke_get().
Referenced by run_requests().
|
static |
Definition at line 231 of file drive_wapbox.c.
References conn_wrap_fd(), make_server_socket(), panic, and wapbox_port.
Referenced by main().
Definition at line 371 of file drive_wapbox.c.
References client(), msg, msg_create, octstr_create, and octstr_duplicate.
Referenced by send_pdu().
|
static |
Definition at line 311 of file drive_wapbox.c.
References octstr_create_from_data.
Referenced by handle_connect_reply(), and handle_get_reply().
|
static |
Definition at line 295 of file drive_wapbox.c.
References gw_assert(), octstr_create_from_data, octstr_set_char(), set_user_ack(), and user_ack.
Referenced by send_invoke_connect(), send_invoke_disconnect(), and send_invoke_get().
|
static |
Definition at line 367 of file drive_wapbox.c.
References octstr_get_bits().
Referenced by handle_reply().
|
static |
Definition at line 152 of file drive_wapbox.c.
Referenced by destroy_clients(), find_client(), and initialize_clients().
|
static |
Definition at line 121 of file drive_wapbox.c.
Referenced by http_thread(), and main().
|
static |
Definition at line 113 of file drive_wapbox.c.
Referenced by add_wsp_get(), and main().
|
static |
Definition at line 209 of file drive_wapbox.c.
Referenced by main(), and start_http_thread().
|
static |
Definition at line 115 of file drive_wapbox.c.
Referenced by add_wsp_get(), and main().
|
static |
Definition at line 111 of file drive_wapbox.c.
Referenced by find_client(), initialize_clients(), and main().
|
static |
Definition at line 110 of file drive_wapbox.c.
Referenced by main(), and run_requests().
List* ready_clients |
Definition at line 153 of file drive_wapbox.c.
Referenced by client_done(), destroy_clients(), initialize_clients(), and run_requests().
|
static |
Definition at line 112 of file drive_wapbox.c.
Referenced by handle_get_reply(), and main().
|
static |
Definition at line 120 of file drive_wapbox.c.
Referenced by client_done(), and run_requests().
|
static |
Definition at line 118 of file drive_wapbox.c.
Referenced by main(), and wtp_invoke_create().
|
static |
Definition at line 117 of file drive_wapbox.c.
Referenced by handle_reply(), main(), and send_pdu().
|
static |
Definition at line 114 of file drive_wapbox.c.
Referenced by main(), and start_wapbox().