Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <ctype.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/socket.h>
#include "gwlib.h"
#include "gwlib/gw-regex.h"
Go to the source code of this file.
Data Structures | |
struct | HTTPEntity |
struct | HTTPServer |
struct | HTTPClient |
struct | port |
Macros | |
#define | DUMP_RESPONSE 1 |
#define | HTTP_SERVER_TIMEOUT 60 |
#define | HTTP_SERVER_MAX_ACTIVE_CONNECTIONS 500 |
#define | HTTP_MAX_FOLLOW 5 |
#define | MAX_HEADER_LENGTH 256 |
Enumerations | |
enum | { HTTP_PORT = 80, HTTPS_PORT = 443 } |
enum | { limbo, running, terminating } |
enum | body_expectation { expect_no_body, expect_body_if_indicated, expect_body } |
enum | entity_state { reading_headers, reading_chunked_body_len, reading_chunked_body_data, reading_chunked_body_crlf, reading_chunked_body_trailer, reading_body_until_eof, reading_body_with_length, body_error, entity_done } |
Variables | |
static int | http_client_timeout = 30 |
static enum { ... } | run_status = limbo |
static Octstr * | http_interface = NULL |
static Mutex * | proxy_mutex = NULL |
static Octstr * | proxy_hostname = NULL |
static int | proxy_port = 0 |
static int | proxy_ssl = 0 |
static Octstr * | proxy_username = NULL |
static Octstr * | proxy_password = NULL |
static List * | proxy_exceptions = NULL |
static regex_t * | proxy_exceptions_regex = NULL |
static List * | pending_requests = NULL |
static Mutex * | client_thread_lock = NULL |
static volatile sig_atomic_t | client_threads_are_running = 0 |
static FDSet * | client_fdset = NULL |
static char * | http_methods [] |
static Dict * | conn_pool |
static Mutex * | conn_pool_lock |
static Mutex * | server_thread_lock = NULL |
static volatile sig_atomic_t | server_thread_is_running = 0 |
static long | server_thread_id = -1 |
static List * | new_server_sockets = NULL |
static List * | closed_server_sockets = NULL |
static int | keep_servers_open = 0 |
static List * | active_connections |
static Mutex * | port_mutex = NULL |
static Dict * | port_collection = NULL |
#define HTTP_MAX_FOLLOW 5 |
Definition at line 653 of file http.c.
Referenced by http_start_request().
#define HTTP_SERVER_MAX_ACTIVE_CONNECTIONS 500 |
Definition at line 96 of file http.c.
Referenced by client_destroy(), and server_thread().
#define HTTP_SERVER_TIMEOUT 60 |
Definition at line 94 of file http.c.
Referenced by port_add().
#define MAX_HEADER_LENGTH 256 |
Definition at line 2987 of file http.c.
Referenced by http_header_pack().
anonymous enum |
Enumerator | |
---|---|
HTTP_PORT | |
HTTPS_PORT |
Definition at line 106 of file http.c.
anonymous enum |
Enumerator | |
---|---|
limbo | |
running | |
terminating |
enum body_expectation |
Enumerator | |
---|---|
expect_no_body | |
expect_body_if_indicated | |
expect_body |
enum entity_state |
Definition at line 349 of file http.c.
|
static |
Definition at line 1244 of file http.c.
References gwlist_get(), gwlist_len(), header_is_called(), host, HTTP_PORT, HTTPS_PORT, method_name, octstr_append(), octstr_format(), octstr_format_append(), octstr_imm(), and ssl.
Referenced by send_request().
Definition at line 1293 of file http.c.
References gwlist_get(), gwlist_len(), octstr_append(), octstr_create, octstr_imm(), and response().
Referenced by handle_transaction().
|
static |
Definition at line 1902 of file http.c.
References active_connections, HTTPClient::conn, HTTPClient::conn_time, debug(), gwlist_produce(), HTTPClient::ip, octstr_get_cstr, HTTPClient::persistent_conn, port, HTTPClient::port, HTTPClient::request, HTTPClient::state, HTTPClient::url, and HTTPClient::use_version_1_0.
Referenced by server_thread().
|
static |
Definition at line 1932 of file http.c.
References active_connections, client(), HTTPClient::conn, conn_destroy(), debug(), entity_destroy(), gwlist_delete_equal(), gwlist_len(), gwlist_lock(), gwlist_unlock(), gwthread_wakeup(), HTTP_SERVER_MAX_ACTIVE_CONNECTIONS, HTTPClient::ip, octstr_destroy(), octstr_get_cstr, panic, HTTPClient::request, server_thread_id, and HTTPClient::url.
Referenced by http_accept_request(), http_close_client(), http_send_reply(), port_put_request(), port_remove(), port_shutdown(), and receive_request().
|
static |
Definition at line 1840 of file http.c.
References client_thread_lock, gwlist_add_producer(), gwlist_create, mutex_create, and pending_requests.
Referenced by http_init().
|
static |
Definition at line 1982 of file http.c.
References gwlist_destroy(), gwlist_search(), http_header_find_first, octstr_destroy(), octstr_destroy_item(), octstr_imm(), octstr_item_case_match(), and octstr_split().
Referenced by http_accept_request().
|
static |
Definition at line 982 of file http.c.
References HTTPServer::conn, conn_eof(), conn_error(), conn_read_line(), debug(), error(), octstr_copy, octstr_delete(), octstr_destroy(), octstr_get_cstr, octstr_parse_long(), octstr_search_char(), octstr_truncate(), parse_http_version(), HTTPServer::persistent, and HTTPServer::status.
Referenced by handle_transaction().
|
static |
Definition at line 1967 of file http.c.
References HTTPClient::conn_time, debug(), gw_assert(), HTTPClient::ip, octstr_get_cstr, HTTPClient::request, and HTTPClient::state.
Referenced by http_send_reply(), and receive_request().
|
static |
Definition at line 1848 of file http.c.
References client_fdset, client_thread_lock, client_threads_are_running, fdset_destroy(), gwlist_destroy(), gwlist_remove_producer(), gwthread_join_every(), http_interface, mutex_destroy(), octstr_destroy(), pending_requests, server_destroy(), and write_request_thread().
Referenced by http_shutdown().
|
static |
Definition at line 783 of file http.c.
References conn_destroy(), conn_eof(), conn_error(), conn_get_id(), conn_open_tcp_nb(), conn_pool, conn_pool_key(), conn_pool_lock, conn_unregister(), conn_wait(), debug(), dict_get(), gwlist_extract_first(), host, mutex_lock, mutex_unlock, octstr_destroy(), octstr_get_cstr, our_host, and ssl.
Referenced by get_connection().
|
static |
Definition at line 762 of file http.c.
References conn_pool, conn_pool_item_destroy(), conn_pool_lock, dict_create(), and mutex_create.
Referenced by http_init().
|
static |
Definition at line 757 of file http.c.
References conn_destroy(), and gwlist_destroy().
Referenced by conn_pool_init().
|
inlinestatic |
Definition at line 776 of file http.c.
References host, octstr_format(), octstr_imm(), our_host, and ssl.
Referenced by conn_pool_get().
|
static |
Definition at line 769 of file http.c.
References conn_pool, conn_pool_lock, dict_destroy(), and mutex_destroy().
Referenced by http_shutdown().
|
static |
Definition at line 375 of file http.c.
References body_error, entity_done, error(), expect_body, expect_no_body, HTTPEntity::expect_state, HTTPEntity::expected_body_len, HTTPEntity::headers, http_header_find_first, octstr_destroy(), octstr_get_cstr, octstr_parse_long(), octstr_str_compare(), octstr_strip_blanks(), reading_body_until_eof, reading_body_with_length, reading_chunked_body_len, and HTTPEntity::state.
Referenced by entity_read().
|
static |
Definition at line 2792 of file http.c.
Referenced by server_shutdown().
|
static |
Definition at line 2782 of file http.c.
References port::fd, port::port, and port_remove().
Referenced by server_shutdown().
|
static |
Definition at line 429 of file http.c.
References HTTPEntity::body, HTTPEntity::chunked_body_chunk_len, HTTPEntity::expect_state, HTTPEntity::expected_body_len, HTTPEntity::headers, http_create_empty_headers(), octstr_create, reading_headers, and HTTPEntity::state.
Referenced by handle_transaction(), and receive_request().
|
static |
Definition at line 445 of file http.c.
References HTTPEntity::body, HTTPEntity::headers, http_destroy_headers(), and octstr_destroy().
Referenced by client_destroy(), handle_transaction(), http_accept_request(), and server_destroy().
|
static |
Definition at line 560 of file http.c.
References body_error, deduce_body_state(), entity_done, HTTPEntity::headers, panic, read_body_until_eof(), read_body_with_length(), read_chunked_body_crlf(), read_chunked_body_data(), read_chunked_body_len(), read_chunked_body_trailer(), read_some_headers(), reading_body_until_eof, reading_body_with_length, reading_chunked_body_crlf, reading_chunked_body_data, reading_chunked_body_len, reading_chunked_body_trailer, reading_headers, and HTTPEntity::state.
Referenced by handle_transaction(), and receive_request().
|
static |
Definition at line 1567 of file http.c.
References HTTPServer::certkeyfile, conn_destroy(), conn_pool_get(), error(), host, HTTPServer::host, http_interface, http_urlparse_destroy(), octstr_get_cstr, parse2trans(), parse_url(), port, HTTPServer::port, proxy_hostname, proxy_port, proxy_ssl, proxy_used_for_host(), ssl, HTTPServer::ssl, and HTTPServer::url.
Referenced by write_request_thread().
|
static |
Definition at line 919 of file http.c.
References HTTPServer::follow_remaining, HTTPEntity::headers, HTTP_FOUND, http_header_find_first, HTTP_MOVED_PERMANENTLY, HTTP_SEE_OTHER, HTTP_TEMPORARY_REDIRECT, HTTPServer::response, and HTTPServer::status.
Referenced by handle_transaction().
|
static |
Definition at line 1038 of file http.c.
References HTTPEntity::body, build_response(), HTTPServer::caller, HTTPServer::certkeyfile, client_read_status(), HTTPServer::conn, conn_destroy(), conn_get_connect_result(), conn_unregister(), debug(), entity_create(), entity_destroy(), entity_read(), error(), HTTPServer::follow_remaining, get_redirection_location(), gw_assert(), gwlist_insert(), gwlist_produce(), HTTPEntity::headers, HTTPServer::host, http_header_find_first, http_interface, http_status_class(), HTTP_STATUS_PROVISIONAL, HTTPServer::method, octstr_case_compare(), octstr_destroy(), octstr_dump, octstr_get_cstr, octstr_imm(), octstr_strip_blanks(), panic, HTTPServer::password, pending_requests, HTTPServer::persistent, HTTPServer::port, proxy_hostname, proxy_port, proxy_used_for_host(), recover_absolute_uri(), HTTPServer::response, response_expectation(), run_status, running, send_request(), HTTPServer::ssl, HTTPServer::state, HTTPServer::status, HTTPServer::uri, HTTPServer::url, and HTTPServer::username.
Referenced by write_request_thread().
|
static |
Definition at line 2859 of file http.c.
References colon, name, octstr_get_cstr, and octstr_search_char().
Referenced by build_request(), http_header_find_all(), http_header_find_first_real(), and http_header_remove_all().
HTTPClient* http_accept_request | ( | int | port, |
Octstr ** | client_ip, | ||
Octstr ** | url, | ||
List ** | headers, | ||
Octstr ** | body, | ||
List ** | cgivars | ||
) |
Definition at line 2571 of file http.c.
References charset, client(), client_destroy(), client_is_persistent(), conn_eof(), conn_error(), conn_wait(), content_type, debug(), entity_destroy(), gwlist_create, http_header_get_content_type(), http_method2name(), HTTP_METHOD_POST, HTTP_METHOD_PUT, octstr_copy, octstr_destroy(), octstr_duplicate, octstr_get_cstr, octstr_len(), octstr_search_char(), octstr_str_compare(), octstr_truncate(), parse_cgivars(), port_get_request(), and url.
Referenced by client_thread(), http_read_thread(), http_thread(), httpadmin_run(), httpd_emu(), httpsmsc_receiver(), sendsms_thread(), and soap_server().
Definition at line 3515 of file http.c.
References http_header_add(), octstr_binary_to_base64(), octstr_destroy(), octstr_format(), octstr_get_cstr, octstr_imm(), octstr_insert(), octstr_strip_blanks(), password, and username.
Referenced by client_thread(), push_headers_create(), receive_push_reply(), and send_request().
Definition at line 3052 of file http.c.
References from, gw_assert(), gwlib_assert_init(), gwlist_append(), gwlist_get(), gwlist_len(), and octstr_duplicate.
Referenced by http_header_combine(), and pap_request_thread().
HTTPCaller* http_caller_create | ( | void | ) |
Definition at line 897 of file http.c.
References caller, gwlist_add_producer(), and gwlist_create.
Referenced by http_get_real(), main(), smsc_http_create(), soap_create_client_data(), and wap_appl_init().
void http_caller_destroy | ( | HTTPCaller * | caller | ) |
Definition at line 907 of file http.c.
References caller, gwlist_destroy(), and server_destroy().
Referenced by client_thread(), conndata_destroy(), http_get_real(), main(), push_thread(), soap_destroy_client_data(), and wap_appl_shutdown().
void http_caller_signal_shutdown | ( | HTTPCaller * | caller | ) |
Definition at line 913 of file http.c.
References caller, and gwlist_remove_producer().
Referenced by httpsmsc_receiver(), httpsmsc_sender(), main(), soap_destroy_client_data(), and wap_appl_shutdown().
Definition at line 2836 of file http.c.
References gw_assert(), gwlib_assert_init(), gwlist_get(), gwlist_len(), name, HTTPCGIVar::name, octstr_str_compare(), and HTTPCGIVar::value.
Referenced by brunet_receive_sms(), clickatell_receive_sms(), client_thread(), default_authorise_user(), generic_receive_sms(), httpd_add_smsc(), httpd_check_authorization(), httpd_emu(), httpd_loglevel(), httpd_remove_message(), httpd_remove_smsc(), httpd_restart_smsc(), httpd_stop_smsc(), kannel_receive_sms(), parse_cgivars_for_password(), parse_cgivars_for_username(), smsbox_req_sendota(), smsbox_req_sendsms(), and xidris_receive_sms().
void http_cgivar_dump | ( | List * | cgiargs | ) |
Definition at line 3440 of file http.c.
References debug(), gwlib_assert_init(), gwlist_get(), gwlist_len(), HTTPCGIVar::name, octstr_dump, and HTTPCGIVar::value.
Definition at line 3459 of file http.c.
References gwlib_assert_init(), gwlist_get(), gwlist_len(), HTTPCGIVar::name, octstr_format_append(), and HTTPCGIVar::value.
Referenced by httpsmsc_receiver().
int http_charset_accepted | ( | List * | headers, |
char * | charset | ||
) |
Definition at line 3509 of file http.c.
References charset, and http_something_accepted().
Referenced by add_charset_headers(), and normalize_charset().
void http_close_all_ports | ( | void | ) |
Definition at line 2526 of file http.c.
References gwthread_join_every(), gwthread_wakeup(), keep_servers_open, server_thread(), server_thread_id, and server_thread_is_running.
Referenced by client_thread(), httpadmin_stop(), httpd_emu_destroy(), main(), and wap_push_ppg_shutdown().
void http_close_client | ( | HTTPClient * | client | ) |
Definition at line 2758 of file http.c.
References client(), and client_destroy().
Referenced by httpadmin_run(), httpsmsc_receiver(), and pap_request_thread().
void http_close_port | ( | int | port | ) |
Definition at line 2515 of file http.c.
References closed_server_sockets, gwlist_produce(), gwthread_wakeup(), port, and server_thread_id.
Referenced by httpsmsc_receiver(), httpsmsc_shutdown(), soap_server_start(), and soap_server_stop().
void http_close_proxy | ( | void | ) |
Definition at line 304 of file http.c.
References gw_assert(), gwlist_destroy(), mutex_lock, mutex_unlock, octstr_destroy(), octstr_destroy_item(), proxy_exceptions, proxy_exceptions_regex, proxy_hostname, proxy_mutex, proxy_password, proxy_port, proxy_username, run_status, running, and terminating.
Referenced by http_use_proxy(), and proxy_shutdown().
List* http_create_empty_headers | ( | void | ) |
Definition at line 2872 of file http.c.
References gwlib_assert_init(), and gwlist_create.
Referenced by brunet_send_sms(), challenge(), clickatell_send_sms(), entity_create(), http_header_duplicate(), httpd_emu_init(), indicate_push_connection(), indicate_push_resume(), kill_kannel(), main(), make_confirmedpush_pdu(), make_push_pdu(), make_reply_headers(), make_resume_reply_pdu(), mime_entity_create(), numhash_create(), obey_request(), pass_data_headers(), push_headers_create(), reply(), return_reply(), send_to_pi(), soap_send(), soap_server(), start_fetch(), test_header_combine(), unpack_new_headers(), and wsp_headers_unpack().
void http_destroy_cgiargs | ( | List * | args | ) |
Definition at line 2818 of file http.c.
References gwlib_assert_init(), gwlist_destroy(), gwlist_extract_first(), HTTPCGIVar::name, octstr_destroy(), and HTTPCGIVar::value.
Referenced by client_thread(), http_thread(), httpd_emu(), httpd_serve(), httpsmsc_receiver(), pap_request_thread(), and sendsms_thread().
void http_destroy_headers | ( | List * | headers | ) |
Definition at line 2879 of file http.c.
References gwlib_assert_init(), gwlist_destroy(), and octstr_destroy_item().
Referenced by brunet_receive_sms(), brunet_send_sms(), challenge(), check_application_headers(), clickatell_receive_sms(), clickatell_send_sms(), client_thread(), content_transformable(), decode_bearer_indication(), entity_destroy(), generic_receive_sms(), generic_send_sms(), http_queue_thread(), http_something_accepted(), http_thread(), httpd_emu(), httpd_emu_shutdown(), httpd_serve(), httpsmsc_receiver(), httpsmsc_send_cb(), indicate_push_connection(), indicate_push_resume(), kannel_receive_sms(), kannel_send_sms(), kill_kannel(), main(), make_confirmedpush_pdu(), make_connectreply_pdu(), make_push_pdu(), make_resume_reply_pdu(), mime_entity_to_octstr(), mime_replace_headers(), mime_something_to_entity(), numhash_create(), obey_request(), pack_sia(), pap_request_thread(), receive_push_reply(), receive_reply(), reply(), return_replies_thread(), return_reply(), send_to_pi(), sendsms_thread(), server_destroy(), soap_read_response(), soap_send(), soap_server(), start_fetch(), start_push(), test_header_combine(), url_result_thread(), xidris_receive_sms(), and xidris_send_sms().
Definition at line 3531 of file http.c.
References found, http_header_quoted_string_len(), octstr_case_compare(), octstr_copy, octstr_destroy(), octstr_duplicate, octstr_get_char(), octstr_len(), octstr_search_char(), and octstr_strip_blanks().
Referenced by fix_boundary_element(), get_start_param(), and mime_something_to_entity().
int http_get_real | ( | int | method, |
Octstr * | url, | ||
List * | request_headers, | ||
Octstr ** | final_url, | ||
List ** | reply_headers, | ||
Octstr ** | reply_body | ||
) |
Definition at line 1821 of file http.c.
References caller, http_caller_create(), http_caller_destroy(), http_get_real(), http_receive_result, http_start_request(), method, and url.
Referenced by http_get_real(), kill_kannel(), and numhash_create().
void http_header_add | ( | List * | headers, |
char * | name, | ||
char * | contents | ||
) |
Definition at line 2886 of file http.c.
References gw_assert(), gwlib_assert_init(), gwlist_append(), name, and octstr_format().
Referenced by add_accept_headers(), add_charset_headers(), add_client_sdu_size(), add_connection_header(), add_dlr_mask(), add_dlr_url(), add_kannel_version(), add_msisdn(), add_network_info(), add_push_flag(), add_session_id(), add_via(), add_x_wap_tod(), brunet_receive_sms(), challenge(), change_header_value(), check_application_headers(), check_session_request_headers(), check_x_wap_application_id_header(), clickatell_receive_sms(), client_thread(), decode_bearer_indication(), fix_boundary_element(), generic_receive_sms(), generic_send_sms(), http_add_basic_auth(), http_header_mark_transformation(), httpd_emu_init(), httpd_serve(), kannel_receive_sms(), kill_kannel(), main(), make_reply_headers(), obey_request(), pack_into_push_datagram(), pack_into_result_datagram(), pass_extension_headers(), pass_optional_header(), proxy_add_authentication(), push_headers_create(), send_request(), send_to_pi(), soap_send(), soap_server(), start_fetch(), test_header_combine(), wsp_unpack_app_header(), wsp_unpack_well_known_field(), and xmlrpc_doc_send().
Definition at line 3279 of file http.c.
References gwlist_append(), octstr_copy, octstr_destroy(), octstr_len(), octstr_strip_blanks(), and start.
Referenced by http_header_split_value().
Definition at line 3068 of file http.c.
References gwlist_len(), http_append_headers(), http_header_get(), http_header_remove_all(), name, octstr_destroy(), and octstr_get_cstr.
Referenced by client_thread(), return_reply(), start_fetch(), start_request(), test_header_combine(), and unpack_new_headers().
void http_header_dump | ( | List * | headers | ) |
Definition at line 3427 of file http.c.
References debug(), gwlib_assert_init(), gwlist_get(), gwlist_len(), and octstr_dump.
Referenced by check_application_headers(), client_thread(), decode_bearer_indication(), main(), and start_push().
Definition at line 2969 of file http.c.
References gwlib_assert_init(), gwlist_append(), gwlist_get(), gwlist_len(), http_create_empty_headers(), and octstr_duplicate.
Referenced by add_push_flag(), create_session(), indicate_confirmedpush(), indicate_push_connection(), indicate_push_resume(), indicate_resume(), make_session_request(), mime_entity_headers(), mime_entity_to_octstr(), mime_replace_headers(), mime_something_to_entity(), pap_request_thread(), push_machine_create(), remember_receiver(), request_confirmed_push(), request_push(), request_unit_push(), and server_create().
Definition at line 3115 of file http.c.
References gw_assert(), gwlib_assert_init(), gwlist_append(), gwlist_create, gwlist_get(), gwlist_len(), header_is_called(), name, and octstr_duplicate.
Referenced by content_transformable(), http_remove_hop_headers(), http_something_accepted(), make_session_request(), and split_header_list().
Octstr* http_header_find_first_real | ( | List * | headers, |
char * | name, | ||
const char * | file, | ||
long | line, | ||
const char * | func | ||
) |
Definition at line 3090 of file http.c.
References file, gw_assert(), gwlib_assert_init(), gwlist_get(), gwlist_len(), header_is_called(), name, name_len, octstr_copy_real(), octstr_len(), and octstr_strip_blanks().
Definition at line 2902 of file http.c.
References colon, error(), gw_assert(), gwlib_assert_init(), gwlist_get(), name, octstr_copy, octstr_create, octstr_duplicate, octstr_len(), octstr_search_char(), and octstr_strip_blanks().
Referenced by check_application_headers(), content_transformable(), decode_bearer_indication(), get_x_kannel_from_headers(), http_header_combine(), http_header_pack(), pack_appid_list(), smsbox_sendota_post(), and wsp_headers_pack().
Definition at line 3225 of file http.c.
References charset, gw_assert(), gwlib_assert_init(), http_header_find_first, octstr_append_cstr(), octstr_create, octstr_delete(), octstr_duplicate, octstr_get_char(), octstr_imm(), octstr_len(), octstr_ncompare(), octstr_search_char(), octstr_strip_blanks(), octstr_truncate(), and type.
Referenced by generic_receive_sms(), http_accept_request(), mime_entity_dump_real(), numhash_create(), receive_reply(), return_reply(), smsbox_sendota_post(), smsbox_sendsms_post(), smsbox_xmlrpc_post(), start_fetch(), transform_message(), and url_result_thread().
Definition at line 3203 of file http.c.
References http_header_add(), http_header_remove_all(), octstr_destroy(), octstr_format(), octstr_get_cstr, and octstr_len().
Referenced by handle_push_message(), return_reply(), and start_fetch().
void http_header_pack | ( | List * | headers | ) |
Definition at line 2992 of file http.c.
References gw_assert(), gwlib_assert_init(), gwlist_delete(), gwlist_get(), gwlist_insert(), gwlist_len(), http_header_get(), MAX_HEADER_LENGTH, name, octstr_append(), octstr_case_compare(), octstr_create, octstr_destroy(), octstr_imm(), and octstr_len().
Referenced by start_fetch().
long http_header_quoted_string_len | ( | Octstr * | header, |
long | start | ||
) |
Definition at line 3293 of file http.c.
References octstr_get_char(), octstr_get_cstr, octstr_len(), start, and warning().
Referenced by http_get_header_parameter(), http_header_split_value(), pack_warning(), and wsp_strip_parameters().
long http_header_remove_all | ( | List * | headers, |
char * | name | ||
) |
Definition at line 3135 of file http.c.
References gw_assert(), gwlib_assert_init(), gwlist_delete(), gwlist_get(), gwlist_len(), header_is_called(), name, and octstr_destroy().
Referenced by add_msisdn(), change_header_value(), check_x_wap_application_id_header(), fix_boundary_element(), handle_push_message(), http_header_combine(), http_header_mark_transformation(), http_remove_hop_headers(), pap_request_thread(), remove_link_headers(), remove_mime_headers(), remove_x_kannel_headers(), response(), return_reply(), send_request(), set_addr_tuple(), split_header_list(), start_fetch(), and xmlrpc_doc_send().
Definition at line 3351 of file http.c.
References gwlist_delete(), gwlist_get(), gwlist_len(), http_header_split_value(), octstr_append(), octstr_append_char(), octstr_destroy(), octstr_get_char(), octstr_insert_data(), and octstr_len().
Referenced by pack_known_header().
Definition at line 3317 of file http.c.
References gwlist_create, http_header_add_element(), http_header_quoted_string_len(), octstr_get_char(), octstr_len(), and start.
Referenced by http_header_split_auth_value(), http_remove_hop_headers(), pack_cache_control(), and pack_known_header().
Definition at line 2932 of file http.c.
References colon, gw_assert(), gwlib_assert_init(), gwlist_get(), gwlist_len(), name, octstr_case_compare(), octstr_copy, octstr_destroy(), octstr_len(), octstr_search_char(), and octstr_strip_blanks().
Referenced by add_msisdn(), add_via(), cid_matches(), client_thread(), fix_boundary_element(), mime_entity_dump_real(), mime_multipart_start_elem(), mime_something_to_entity(), return_reply(), set_addr_tuple(), set_dlr_mask(), set_dlr_url(), set_smsbox_id(), and set_smsc_id().
void http_init | ( | void | ) |
Definition at line 3598 of file http.c.
References client_init(), conn_pool_init(), gw_assert(), limbo, port_init(), proxy_init(), run_status, running, and server_init().
Referenced by gwlib_init().
int http_method | ( | HTTPClient * | client | ) |
char* http_method2name | ( | int | method | ) |
Definition at line 3681 of file http.c.
References gw_assert(), HTTP_METHOD_GET, HTTP_METHOD_PATCH, http_methods, and method.
Referenced by http_accept_request(), and send_request().
int http_name2method | ( | Octstr * | method | ) |
Definition at line 3654 of file http.c.
References gw_assert(), HTTP_METHOD_DELETE, HTTP_METHOD_GET, HTTP_METHOD_HEAD, HTTP_METHOD_PATCH, HTTP_METHOD_POST, HTTP_METHOD_PUT, method, and octstr_str_compare().
Referenced by main(), parse_request_line(), and start_fetch().
int http_open_port | ( | int | port, |
int | ssl | ||
) |
Definition at line 2509 of file http.c.
References http_open_port_if(), and ssl.
Referenced by httpd_emu_create(), main(), smsc_http_create(), soap_server_start(), start_http_thread(), and wap_push_ppg_init().
int http_open_port_if | ( | int | port, |
int | ssl, | ||
Octstr * | interface | ||
) |
Definition at line 2483 of file http.c.
References port::fd, gwlist_produce(), gwthread_wakeup(), info(), keep_servers_open, make_server_socket(), new_server_sockets, octstr_get_cstr, port, port::port, port_add(), port_remove(), server_thread_id, ssl, port::ssl, and start_server_thread().
Referenced by http_open_port(), httpadmin_start(), and init_smsbox().
|
static |
Definition at line 2645 of file http.c.
References HTTP_ACCEPTED, HTTP_BAD_GATEWAY, HTTP_BAD_METHOD, HTTP_BAD_REQUEST, HTTP_CREATED, HTTP_FORBIDDEN, HTTP_FOUND, HTTP_INTERNAL_SERVER_ERROR, HTTP_MOVED_PERMANENTLY, HTTP_NO_CONTENT, HTTP_NOT_ACCEPTABLE, HTTP_NOT_FOUND, HTTP_NOT_IMPLEMENTED, HTTP_NOT_MODIFIED, HTTP_OK, HTTP_REQUEST_ENTITY_TOO_LARGE, HTTP_RESET_CONTENT, HTTP_SEE_OTHER, HTTP_TEMPORARY_REDIRECT, HTTP_UNAUTHORIZED, and HTTP_UNSUPPORTED_MEDIA_TYPE.
Referenced by http_send_reply().
void* http_receive_result_real | ( | HTTPCaller * | caller, |
int * | status, | ||
Octstr ** | final_url, | ||
List ** | headers, | ||
Octstr ** | body, | ||
int | blocking | ||
) |
Definition at line 1786 of file http.c.
References HTTPEntity::body, caller, gwlist_consume(), gwlist_extract_first(), HTTPEntity::headers, HTTPServer::request_id, HTTPServer::response, server_destroy(), HTTPServer::status, and HTTPServer::url.
void http_remove_hop_headers | ( | List * | headers | ) |
Definition at line 3161 of file http.c.
References gw_assert(), gwlib_assert_init(), gwlist_consume(), gwlist_destroy(), http_header_find_all(), http_header_remove_all(), http_header_split_value(), octstr_delete(), octstr_destroy(), and octstr_get_cstr.
Referenced by pap_request_thread(), return_reply(), and start_fetch().
Octstr* http_request_url | ( | HTTPClient * | client | ) |
void http_send_reply | ( | HTTPClient * | client, |
int | status, | ||
List * | headers, | ||
Octstr * | body | ||
) |
Definition at line 2695 of file http.c.
References client(), client_destroy(), client_reset(), conn_register, conn_write(), date(), date_format_http(), gwlist_get(), gwlist_len(), HTTP_METHOD_DELETE, HTTP_METHOD_HEAD, http_reason_phrase(), octstr_append(), octstr_destroy(), octstr_format(), octstr_format_append(), octstr_get_cstr, octstr_len(), port_get_fdset(), receive_request(), and response().
Referenced by brunet_receive_sms(), challenge(), clickatell_receive_sms(), client_thread(), delayed_http_reply(), generic_receive_sms(), http_thread(), httpd_emu_reply(), httpd_serve(), kannel_receive_sms(), pap_request_thread(), receive_request(), reply(), send_to_pi(), sendsms_thread(), soap_server(), and xidris_receive_sms().
void http_set_client_timeout | ( | long | timeout | ) |
Define timeout in seconds for which HTTP client will wait for response. Set -1 to disable timeouts.
Definition at line 1751 of file http.c.
References client_fdset, fdset_set_timeout(), and http_client_timeout.
Referenced by init_bearerbox(), init_smsbox(), and init_wapbox().
void http_set_interface | ( | const Octstr * | our_host | ) |
Definition at line 1746 of file http.c.
References http_interface, octstr_duplicate, and our_host.
Referenced by config_reload().
void http_set_server_timeout | ( | int | port, |
long | timeout | ||
) |
Define timeout in seconds for which HTTP server will wait for request. Set -1 to disable timeouts.
Definition at line 2477 of file http.c.
References port_set_timeout().
void http_shutdown | ( | void | ) |
Definition at line 3618 of file http.c.
References client_shutdown(), conn_pool_shutdown(), gw_assert(), gwlib_assert_init(), limbo, port_shutdown(), proxy_shutdown(), run_status, running, server_shutdown(), and terminating.
Referenced by gwlib_shutdown().
|
static |
Definition at line 3476 of file http.c.
References found, gw_assert(), gwlib_assert_init(), gwlist_get(), gwlist_len(), http_destroy_headers(), http_header_find_all(), octstr_case_search(), octstr_create, and octstr_destroy().
Referenced by http_charset_accepted(), and http_type_accepted().
void http_start_request | ( | HTTPCaller * | caller, |
int | method, | ||
Octstr * | url, | ||
List * | headers, | ||
Octstr * | body, | ||
int | follow, | ||
void * | id, | ||
Octstr * | certkeyfile | ||
) |
Definition at line 1760 of file http.c.
References caller, gwlist_produce(), HTTP_MAX_FOLLOW, http_start_request(), method, pending_requests, HTTPServer::request_id, server_create(), start_client_threads(), and url.
Referenced by brunet_send_sms(), clickatell_send_sms(), generic_send_sms(), http_get_real(), http_queue_thread(), http_start_request(), kannel_send_sms(), obey_request(), receive_push_reply(), soap_client_init_query(), start_fetch(), start_push(), start_request(), xidris_send_sms(), and xmlrpc_doc_send().
int http_status_class | ( | int | code | ) |
Definition at line 3642 of file http.c.
References code, and HTTP_STATUS_UNKNOWN.
Referenced by handle_transaction(), response_expectation(), and return_reply().
int http_type_accepted | ( | List * | headers, |
char * | type | ||
) |
Definition at line 3503 of file http.c.
References http_something_accepted(), and type.
Referenced by add_accept_headers(), check_session_request_headers(), convert_content(), httpd_serve(), and return_reply().
HTTPURLParse* http_urlparse_create | ( | void | ) |
Definition at line 1313 of file http.c.
References HTTPURLParse::fragment, HTTPURLParse::host, HTTPURLParse::pass, HTTPURLParse::path, HTTPURLParse::port, HTTPURLParse::query, HTTPURLParse::scheme, HTTPURLParse::url, and HTTPURLParse::user.
Referenced by parse_url().
void http_urlparse_destroy | ( | HTTPURLParse * | p | ) |
Definition at line 1332 of file http.c.
References HTTPURLParse::fragment, gw_assert(), HTTPURLParse::host, octstr_destroy(), HTTPURLParse::pass, HTTPURLParse::path, HTTPURLParse::query, HTTPURLParse::scheme, HTTPURLParse::url, and HTTPURLParse::user.
Referenced by generic_send_sms(), get_connection(), and parse_url().
void http_use_proxy | ( | Octstr * | hostname, |
int | port, | ||
int | ssl, | ||
List * | exceptions, | ||
Octstr * | username, | ||
Octstr * | password, | ||
Octstr * | exceptions_regex | ||
) |
Definition at line 268 of file http.c.
References debug(), gw_assert(), gwlist_append(), gwlist_create, gwlist_get(), gwlist_len(), hostname, http_close_proxy(), mutex_lock, mutex_unlock, octstr_duplicate, octstr_get_cstr, octstr_len(), panic, password, port, proxy_exceptions, proxy_exceptions_regex, proxy_hostname, proxy_mutex, proxy_password, proxy_port, proxy_ssl, proxy_username, run_status, running, ssl, and username.
Referenced by config_reload(), init_bearerbox(), init_smsbox(), and main().
|
static |
Definition at line 1543 of file http.c.
References HTTPURLParse::host, HTTPServer::host, octstr_append(), octstr_append_char(), octstr_compare(), octstr_duplicate, octstr_imm(), HTTPURLParse::pass, HTTPServer::password, HTTPURLParse::path, HTTPURLParse::port, HTTPServer::port, HTTPURLParse::query, HTTPURLParse::scheme, HTTPServer::ssl, HTTPServer::uri, HTTPURLParse::user, and HTTPServer::username.
Referenced by get_connection().
Definition at line 2542 of file http.c.
References gwlist_append(), HTTPCGIVar::name, octstr_copy, octstr_destroy(), octstr_len(), octstr_search_char(), octstr_url_decode(), start, and HTTPCGIVar::value.
Referenced by generic_receive_sms(), and http_accept_request().
void parse_dump | ( | HTTPURLParse * | p | ) |
Definition at line 1348 of file http.c.
References debug(), HTTPURLParse::fragment, HTTPURLParse::host, octstr_get_cstr, HTTPURLParse::pass, HTTPURLParse::path, HTTPURLParse::port, HTTPURLParse::query, HTTPURLParse::scheme, HTTPURLParse::url, and HTTPURLParse::user.
Referenced by parse_url().
|
static |
Definition at line 168 of file http.c.
References octstr_get_char(), octstr_imm(), octstr_len(), and octstr_ncompare().
Referenced by client_read_status(), and parse_request_line().
|
static |
Definition at line 2210 of file http.c.
References error(), gwlist_destroy(), gwlist_get(), gwlist_len(), http_name2method(), method, octstr_destroy(), octstr_destroy_item(), octstr_split_words(), parse_http_version(), and url.
Referenced by receive_request().
HTTPURLParse* parse_url | ( | Octstr * | url | ) |
Definition at line 1377 of file http.c.
References colon, debug(), error(), HTTPURLParse::host, HTTP_PORT, http_urlparse_create(), http_urlparse_destroy(), HTTPS_PORT, octstr_case_search(), octstr_compare(), octstr_copy, octstr_create, octstr_duplicate, octstr_get_cstr, octstr_imm(), octstr_len(), octstr_parse_long(), octstr_search_char(), octstr_set_char(), octstr_url_decode(), parse_dump(), HTTPURLParse::pass, HTTPURLParse::path, HTTPURLParse::port, HTTPURLParse::query, HTTPURLParse::scheme, url, HTTPURLParse::url, and HTTPURLParse::user.
Referenced by generic_send_sms(), and get_connection().
|
static |
Definition at line 2057 of file http.c.
References port::active_consumers, port::clients_with_requests, counter_create(), dict_get(), dict_put(), fdset_create_real(), gwlist_add_producer(), gwlist_create, HTTP_SERVER_TIMEOUT, mutex_lock, mutex_unlock, octstr_destroy(), port_collection, port_key(), port_mutex, port::server_fdset, and warning().
Referenced by http_open_port_if().
|
static |
Definition at line 2190 of file http.c.
References dict_get(), mutex_lock, mutex_unlock, octstr_destroy(), port_collection, port_key(), port_mutex, and port::server_fdset.
Referenced by http_send_reply().
|
static |
Definition at line 2149 of file http.c.
References port::active_consumers, client(), port::clients_with_requests, counter_decrease(), counter_increase(), dict_get(), gwlist_consume(), mutex_lock, mutex_unlock, octstr_destroy(), port_collection, port_key(), and port_mutex.
Referenced by http_accept_request().
|
static |
Definition at line 2034 of file http.c.
References active_connections, dict_create(), gwlist_create, mutex_create, port_collection, and port_mutex.
Referenced by http_init().
|
static |
Definition at line 2051 of file http.c.
References octstr_format().
Referenced by port_add(), port_get_fdset(), port_get_request(), port_put_request(), port_remove(), and port_set_timeout().
|
static |
Definition at line 2028 of file http.c.
References client().
Referenced by port_remove().
|
static |
Definition at line 2129 of file http.c.
References client(), client_destroy(), port::clients_with_requests, dict_get(), gwlist_produce(), mutex_lock, mutex_unlock, octstr_destroy(), port_collection, port_key(), and port_mutex.
Referenced by receive_request().
|
static |
Definition at line 2081 of file http.c.
References active_connections, port::active_consumers, client(), client_destroy(), port::clients_with_requests, conn_unregister(), counter_destroy(), counter_value(), dict_remove(), error(), fdset_destroy(), gwlist_destroy(), gwlist_extract_first(), gwlist_lock(), gwlist_remove_producer(), gwlist_search(), gwlist_search_all(), gwlist_unlock(), gwthread_sleep(), mutex_lock, mutex_unlock, octstr_destroy(), port_collection, port_key(), port_match(), port_mutex, and port::server_fdset.
Referenced by destroy_struct_server(), http_open_port_if(), and server_thread().
|
static |
Definition at line 2173 of file http.c.
References dict_get(), fdset_set_timeout(), mutex_lock, mutex_unlock, octstr_destroy(), port_collection, port_key(), port_mutex, and port::server_fdset.
Referenced by http_set_server_timeout().
|
static |
Definition at line 2042 of file http.c.
References active_connections, client_destroy(), dict_destroy(), gwlist_destroy(), mutex_destroy(), port_collection, and port_mutex.
Referenced by http_shutdown().
|
static |
Definition at line 209 of file http.c.
References http_header_add(), octstr_binary_to_base64(), octstr_destroy(), octstr_format(), octstr_get_cstr, octstr_imm(), octstr_insert(), octstr_strip_blanks(), proxy_password, and proxy_username.
Referenced by send_request().
|
static |
Definition at line 225 of file http.c.
References gwlist_create, mutex_create, proxy_exceptions, and proxy_mutex.
Referenced by http_init().
|
static |
Definition at line 232 of file http.c.
References http_close_proxy(), mutex_destroy(), and proxy_mutex.
Referenced by http_shutdown().
Definition at line 240 of file http.c.
References gwlist_get(), gwlist_len(), host, mutex_lock, mutex_unlock, octstr_compare(), proxy_exceptions, proxy_exceptions_regex, proxy_hostname, proxy_mutex, and url.
Referenced by get_connection(), handle_transaction(), and send_request().
|
static |
Definition at line 525 of file http.c.
References HTTPEntity::body, body_error, conn_eof(), conn_error(), conn_read_everything(), entity_done, octstr_append(), octstr_destroy(), and HTTPEntity::state.
Referenced by entity_read().
|
static |
Definition at line 540 of file http.c.
References HTTPEntity::body, body_error, conn_eof(), conn_error(), conn_read_fixed(), entity_done, HTTPEntity::expected_body_len, octstr_destroy(), and HTTPEntity::state.
Referenced by entity_read().
|
static |
Definition at line 498 of file http.c.
References body_error, conn_eof(), conn_error(), conn_read_line(), octstr_destroy(), reading_chunked_body_len, and HTTPEntity::state.
Referenced by entity_read().
|
static |
Definition at line 482 of file http.c.
References HTTPEntity::body, body_error, HTTPEntity::chunked_body_chunk_len, conn_eof(), conn_error(), conn_read_fixed(), octstr_append(), octstr_destroy(), reading_chunked_body_crlf, and HTTPEntity::state.
Referenced by entity_read().
|
static |
Definition at line 456 of file http.c.
References body_error, HTTPEntity::chunked_body_chunk_len, conn_eof(), conn_error(), conn_read_line(), octstr_destroy(), octstr_parse_long(), reading_chunked_body_data, reading_chunked_body_trailer, and HTTPEntity::state.
Referenced by entity_read().
|
static |
Definition at line 513 of file http.c.
References body_error, entity_done, HTTPEntity::headers, read_some_headers(), and HTTPEntity::state.
Referenced by entity_read().
|
static |
Definition at line 131 of file http.c.
References conn_eof(), conn_error(), conn_read_line(), gwlist_append(), gwlist_get(), gwlist_len(), octstr_append(), octstr_destroy(), octstr_get_char(), and octstr_len().
Referenced by entity_read(), and read_chunked_body_trailer().
|
static |
Definition at line 2251 of file http.c.
References client(), client_destroy(), client_reset(), conn_eof(), conn_error(), conn_outbuf_len(), conn_read_line(), conn_unregister(), entity_create(), entity_read(), error(), expect_body_if_indicated, HTTP_BAD_REQUEST, http_send_reply(), octstr_destroy(), panic, parse_request_line(), port_put_request(), run_status, and running.
Referenced by http_send_reply(), and server_thread().
|
static |
Definition at line 941 of file http.c.
References gw_assert(), HTTPServer::host, octstr_append(), octstr_append_char(), octstr_create, octstr_destroy(), octstr_format_append(), octstr_get_char(), octstr_insert(), HTTPServer::password, HTTPServer::port, HTTPServer::ssl, and HTTPServer::username.
Referenced by handle_transaction().
|
static |
Definition at line 1027 of file http.c.
References expect_body, expect_no_body, HTTP_METHOD_DELETE, HTTP_METHOD_HEAD, HTTP_NO_CONTENT, HTTP_NOT_MODIFIED, http_status_class(), HTTP_STATUS_PROVISIONAL, and method.
Referenced by handle_transaction().
|
static |
Definition at line 1611 of file http.c.
References build_request(), HTTPServer::conn, conn_destroy(), conn_write(), debug(), error(), HTTPServer::host, http_add_basic_auth(), http_header_add(), http_header_remove_all(), http_method2name(), HTTP_METHOD_PATCH, HTTP_METHOD_POST, HTTP_METHOD_PUT, HTTPServer::method, octstr_destroy(), octstr_dump, octstr_get_cstr, octstr_len(), HTTPServer::password, HTTPServer::port, proxy_add_authentication(), proxy_used_for_host(), HTTPServer::request_body, HTTPServer::request_headers, HTTPServer::ssl, HTTPServer::uri, HTTPServer::url, HTTPServer::username, and warning().
Referenced by handle_transaction(), and write_request_thread().
|
static |
Definition at line 700 of file http.c.
References caller, HTTPServer::caller, HTTPServer::certkeyfile, HTTPServer::conn, HTTPServer::follow_remaining, HTTPServer::host, http_header_duplicate(), method, HTTPServer::method, octstr_duplicate, HTTPServer::password, HTTPServer::persistent, HTTPServer::port, HTTPServer::request_body, HTTPServer::request_headers, HTTPServer::request_id, HTTPServer::response, HTTPServer::ssl, HTTPServer::state, HTTPServer::status, HTTPServer::uri, url, HTTPServer::url, and HTTPServer::username.
Referenced by http_start_request().
|
static |
Definition at line 730 of file http.c.
References HTTPServer::certkeyfile, entity_destroy(), HTTPServer::host, http_destroy_headers(), octstr_destroy(), HTTPServer::password, HTTPServer::request_body, HTTPServer::request_headers, HTTPServer::response, HTTPServer::uri, HTTPServer::url, and HTTPServer::username.
Referenced by client_shutdown(), http_caller_destroy(), and http_receive_result_real().
|
static |
Definition at line 2773 of file http.c.
References closed_server_sockets, gwlist_add_producer(), gwlist_create, mutex_create, new_server_sockets, and server_thread_lock.
Referenced by http_init().
|
static |
Definition at line 2799 of file http.c.
References closed_server_sockets, destroy_int_pointer(), destroy_struct_server(), gwlist_destroy(), gwlist_remove_producer(), gwthread_join_every(), gwthread_wakeup(), mutex_destroy(), new_server_sockets, server_thread(), server_thread_id, server_thread_is_running, and server_thread_lock.
Referenced by http_shutdown().
|
static |
Definition at line 2344 of file http.c.
References active_connections, client(), client_create(), closed_server_sockets, conn_register, conn_wrap_fd(), debug(), error(), pollfd::events, pollfd::fd, port::fd, gwlist_consume(), gwlist_extract_first(), gwlist_len(), gwthread_poll(), gwthread_sleep(), host_ip(), HTTP_SERVER_MAX_ACTIVE_CONNECTIONS, keep_servers_open, new_server_sockets, octstr_destroy(), octstr_get_cstr, POLLIN, port::port, port_remove(), receive_request(), run_status, running, port::server_fdset, server_thread_id, ssl, and warning().
Referenced by http_close_all_ports(), server_shutdown(), and start_server_thread().
|
static |
Definition at line 1723 of file http.c.
References client_fdset, client_thread_lock, client_threads_are_running, error(), fdset_create_real(), fdset_destroy(), gwthread_create, http_client_timeout, mutex_lock, mutex_unlock, and write_request_thread().
Referenced by http_start_request().
|
static |
Definition at line 2458 of file http.c.
References gwthread_create, mutex_lock, mutex_unlock, server_thread(), server_thread_id, server_thread_is_running, and server_thread_lock.
Referenced by http_open_port_if().
|
static |
Definition at line 1681 of file http.c.
References HTTPServer::caller, client_fdset, HTTPServer::conn, conn_is_connected(), conn_register, debug(), get_connection(), gw_assert(), gwlist_consume(), gwlist_len(), gwlist_produce(), handle_transaction(), pending_requests, run_status, running, send_request(), and HTTPServer::state.
Referenced by client_shutdown(), and start_client_threads().
|
static |
Definition at line 1899 of file http.c.
Referenced by client_create(), client_destroy(), port_init(), port_remove(), port_shutdown(), and server_thread().
|
static |
Definition at line 647 of file http.c.
Referenced by client_shutdown(), http_set_client_timeout(), start_client_threads(), and write_request_thread().
|
static |
Definition at line 639 of file http.c.
Referenced by client_init(), client_shutdown(), and start_client_threads().
|
static |
Definition at line 640 of file http.c.
Referenced by client_shutdown(), and start_client_threads().
|
static |
Definition at line 1896 of file http.c.
Referenced by http_close_port(), server_init(), server_shutdown(), and server_thread().
|
static |
Definition at line 753 of file http.c.
Referenced by conn_pool_get(), conn_pool_init(), and conn_pool_shutdown().
|
static |
Definition at line 754 of file http.c.
Referenced by conn_pool_get(), conn_pool_init(), and conn_pool_shutdown().
|
static |
Definition at line 91 of file http.c.
Referenced by http_set_client_timeout(), and start_client_threads().
|
static |
Definition at line 123 of file http.c.
Referenced by client_shutdown(), get_connection(), handle_transaction(), and http_set_interface().
|
static |
Definition at line 660 of file http.c.
Referenced by http_method2name().
|
static |
Definition at line 1897 of file http.c.
Referenced by http_close_all_ports(), http_open_port_if(), and server_thread().
|
static |
Definition at line 1895 of file http.c.
Referenced by http_open_port_if(), server_init(), server_shutdown(), and server_thread().
|
static |
Definition at line 633 of file http.c.
Referenced by client_init(), client_shutdown(), handle_transaction(), http_start_request(), and write_request_thread().
|
static |
Definition at line 2025 of file http.c.
Referenced by port_add(), port_get_fdset(), port_get_request(), port_init(), port_put_request(), port_remove(), port_set_timeout(), and port_shutdown().
|
static |
Definition at line 2024 of file http.c.
Referenced by port_add(), port_get_fdset(), port_get_request(), port_init(), port_put_request(), port_remove(), port_set_timeout(), and port_shutdown().
|
static |
Definition at line 205 of file http.c.
Referenced by http_close_proxy(), http_use_proxy(), proxy_init(), and proxy_used_for_host().
|
static |
Definition at line 206 of file http.c.
Referenced by http_close_proxy(), http_use_proxy(), and proxy_used_for_host().
|
static |
Definition at line 200 of file http.c.
Referenced by get_connection(), handle_transaction(), http_close_proxy(), http_use_proxy(), and proxy_used_for_host().
|
static |
Definition at line 199 of file http.c.
Referenced by http_close_proxy(), http_use_proxy(), proxy_init(), proxy_shutdown(), and proxy_used_for_host().
|
static |
Definition at line 204 of file http.c.
Referenced by http_close_proxy(), http_use_proxy(), main(), and proxy_add_authentication().
|
static |
Definition at line 201 of file http.c.
Referenced by get_connection(), handle_transaction(), http_close_proxy(), http_use_proxy(), and main().
|
static |
Definition at line 202 of file http.c.
Referenced by get_connection(), http_use_proxy(), and main().
|
static |
Definition at line 203 of file http.c.
Referenced by http_close_proxy(), http_use_proxy(), main(), and proxy_add_authentication().
enum { ... } run_status |
|
static |
Definition at line 1894 of file http.c.
Referenced by client_destroy(), http_close_all_ports(), http_close_port(), http_open_port_if(), server_shutdown(), server_thread(), and start_server_thread().
|
static |
Definition at line 1893 of file http.c.
Referenced by http_close_all_ports(), server_shutdown(), and start_server_thread().
|
static |
Definition at line 1892 of file http.c.
Referenced by server_init(), server_shutdown(), and start_server_thread().