Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include "wap_push_pap_mime.h"
Go to the source code of this file.
Functions | |
static int | is_cr (int c) |
static int | is_lf (int c) |
static int | islwspchar (int c) |
static long | octstr_drop_leading_blanks (Octstr **header_value) |
static void | drop_separator (Octstr **header_value, long *pos) |
static int | parse_preamble (Octstr **mime_content, Octstr *boundary) |
static long | parse_transport_padding (Octstr *mime_content, long pos) |
static long | parse_terminator (Octstr *mime_content, long pos) |
static int | parse_body_part (Octstr **multipart, Octstr *boundary, Octstr **body_part) |
static int | parse_encapsulation (Octstr **mime_content, Octstr *boundary, Octstr **push_data, List **content_headers, Octstr **rdf_content) |
static int | check_control_headers (Octstr **body_part) |
static int | check_control_content_type_header (Octstr **body_part, Octstr *boundary) |
static int | drop_optional_header (Octstr **body_part, char *name, Octstr *boundary) |
static int | drop_header_true (Octstr **body_part, long content_pos) |
static int | drop_extension_headers (Octstr **mime_content, Octstr *boundary) |
static long | parse_field_value (Octstr *pap_content, long pos) |
static long | parse_field_name (Octstr *pap_content, long pos) |
static void | octstr_split_by_pos (Octstr **mime_content, Octstr **pap_content, long boundary_pos) |
static Octstr * | make_close_delimiter (Octstr *boundary) |
static Octstr * | make_part_delimiter (Octstr *boundary) |
static Octstr * | make_start_delimiter (Octstr *dash_boundary) |
static int | pass_data_headers (Octstr **body_part, List **data_headers) |
static int | check_data_x_wap_application_id_header (Octstr **body_part, List **data_headers, Octstr *boundary) |
static int | check_data_content_type_header (Octstr **body_part, List **data_headers, Octstr *boundary) |
static int | pass_optional_header (Octstr **body_part, char *name, List **content_headers, Octstr *boundary) |
static int | pass_extension_headers (Octstr **body_part, List **data_headers, Octstr *boundary) |
static long | pass_field_name (Octstr **body_part, Octstr **content_header, long pos) |
static long | pass_field_value (Octstr **body_part, Octstr **content_header, long pos) |
static int | parse_epilogue (Octstr **mime_content) |
static int | parse_tail (Octstr **multipart, Octstr *part_delimiter, long boundary_pos, long *next_part_pos) |
int | mime_parse (Octstr *boundary, Octstr *mime_content, Octstr **pap_content, Octstr **push_data, List **content_headers, Octstr **rdf_content) |
static long | parse_close_delimiter (Octstr *close_delimiter, Octstr *mime_content, long pos) |
Definition at line 445 of file wap_push_pap_mime.c.
References boundary, drop_header_true(), octstr_case_nsearch(), octstr_case_search(), octstr_imm(), and octstr_search().
Referenced by check_control_headers().
|
static |
Definition at line 428 of file wap_push_pap_mime.c.
References check_control_content_type_header(), drop_extension_headers(), drop_optional_header(), and octstr_imm().
Referenced by mime_parse().
|
static |
Definition at line 662 of file wap_push_pap_mime.c.
References boundary, content_header, error(), gwlist_append(), octstr_case_nsearch(), octstr_create, octstr_delete(), octstr_destroy(), octstr_duplicate, octstr_len(), octstr_search(), parse_terminator(), and pass_field_value().
Referenced by pass_data_headers().
|
static |
Definition at line 623 of file wap_push_pap_mime.c.
References boundary, content_header, error(), gwlist_append(), octstr_case_nsearch(), octstr_create, octstr_delete(), octstr_destroy(), octstr_duplicate, octstr_len(), octstr_search(), parse_terminator(), and pass_field_value().
Referenced by pass_data_headers().
Definition at line 505 of file wap_push_pap_mime.c.
References boundary, islwspchar(), octstr_case_nsearch(), octstr_case_search(), octstr_delete(), octstr_get_char(), octstr_imm(), parse_field_name(), parse_field_value(), and parse_terminator().
Referenced by check_control_headers().
|
static |
Definition at line 468 of file wap_push_pap_mime.c.
References octstr_delete(), parse_field_value(), and parse_terminator().
Referenced by check_control_content_type_header(), and drop_optional_header().
Definition at line 482 of file wap_push_pap_mime.c.
References boundary, drop_header_true(), name, octstr_case_nsearch(), octstr_imm(), and octstr_search().
Referenced by check_control_headers().
|
static |
Definition at line 743 of file wap_push_pap_mime.c.
References octstr_delete(), and octstr_drop_leading_blanks().
Referenced by pass_extension_headers(), and pass_optional_header().
|
static |
Definition at line 184 of file wap_push_pap_mime.c.
Referenced by parse_field_value(), parse_terminator(), and pass_field_value().
|
static |
Definition at line 189 of file wap_push_pap_mime.c.
Referenced by parse_field_value(), and parse_terminator().
|
static |
Definition at line 197 of file wap_push_pap_mime.c.
Referenced by drop_extension_headers(), parse_transport_padding(), and pass_extension_headers().
Definition at line 390 of file wap_push_pap_mime.c.
References boundary, make_part_delimiter(), and octstr_format_append().
Referenced by parse_body_part().
Definition at line 400 of file wap_push_pap_mime.c.
References octstr_append(), and octstr_create.
Referenced by make_close_delimiter(), and parse_body_part().
Definition at line 410 of file wap_push_pap_mime.c.
References octstr_append(), and octstr_create.
Referenced by parse_preamble().
int mime_parse | ( | Octstr * | boundary, |
Octstr * | mime_content, | ||
Octstr ** | pap_content, | ||
Octstr ** | push_data, | ||
List ** | content_headers, | ||
Octstr ** | rdf_content | ||
) |
Definition at line 131 of file wap_push_pap_mime.c.
References boundary, check_control_headers(), gw_assert(), octstr_len(), parse_body_part(), parse_encapsulation(), parse_epilogue(), parse_preamble(), push_data, and warning().
Referenced by main(), and pap_request_thread().
|
static |
Definition at line 755 of file wap_push_pap_mime.c.
References octstr_delete(), and octstr_get_char().
Referenced by drop_separator().
|
static |
Definition at line 383 of file wap_push_pap_mime.c.
References octstr_copy, and octstr_delete().
Referenced by parse_body_part().
Definition at line 289 of file wap_push_pap_mime.c.
References boundary, error(), make_close_delimiter(), make_part_delimiter(), octstr_delete(), octstr_destroy(), octstr_search(), octstr_split_by_pos(), parse_close_delimiter(), parse_tail(), and parse_transport_padding().
Referenced by mime_parse(), and parse_encapsulation().
|
static |
Definition at line 269 of file wap_push_pap_mime.c.
References octstr_len(), and octstr_ncompare().
Referenced by parse_body_part().
|
static |
Definition at line 354 of file wap_push_pap_mime.c.
References boundary, parse_body_part(), pass_data_headers(), and push_data.
Referenced by mime_parse().
|
static |
Definition at line 870 of file wap_push_pap_mime.c.
References octstr_delete(), octstr_len(), and parse_terminator().
Referenced by mime_parse().
|
static |
Definition at line 555 of file wap_push_pap_mime.c.
References octstr_get_char(), and octstr_len().
Referenced by drop_extension_headers().
|
static |
Definition at line 531 of file wap_push_pap_mime.c.
References is_cr(), is_lf(), octstr_get_char(), and octstr_len().
Referenced by drop_extension_headers(), and drop_header_true().
Definition at line 220 of file wap_push_pap_mime.c.
References boundary, error(), make_start_delimiter(), octstr_delete(), octstr_destroy(), octstr_search(), and parse_tail().
Referenced by mime_parse().
|
static |
Definition at line 203 of file wap_push_pap_mime.c.
References delimiter, octstr_len(), parse_terminator(), and parse_transport_padding().
Referenced by parse_body_part(), and parse_preamble().
|
static |
Definition at line 246 of file wap_push_pap_mime.c.
References is_cr(), is_lf(), and octstr_get_char().
Referenced by check_data_content_type_header(), check_data_x_wap_application_id_header(), drop_extension_headers(), drop_header_true(), parse_epilogue(), parse_tail(), pass_extension_headers(), and pass_optional_header().
|
static |
Definition at line 261 of file wap_push_pap_mime.c.
References islwspchar(), and octstr_get_char().
Referenced by parse_body_part(), and parse_tail().
Definition at line 576 of file wap_push_pap_mime.c.
References check_data_content_type_header(), check_data_x_wap_application_id_header(), gwlist_append(), http_create_empty_headers(), octstr_create, octstr_delete(), octstr_imm(), octstr_len(), pass_extension_headers(), pass_optional_header(), and warning().
Referenced by parse_encapsulation().
|
static |
Definition at line 774 of file wap_push_pap_mime.c.
References boundary, drop_separator(), error(), http_header_add(), islwspchar(), octstr_case_nsearch(), octstr_create, octstr_delete(), octstr_destroy(), octstr_get_char(), octstr_get_cstr, octstr_imm(), octstr_search(), parse_terminator(), pass_field_name(), and pass_field_value().
Referenced by pass_data_headers().
Definition at line 845 of file wap_push_pap_mime.c.
References name, octstr_append(), octstr_copy, octstr_destroy(), octstr_get_char(), octstr_len(), and start.
Referenced by pass_extension_headers().
Definition at line 821 of file wap_push_pap_mime.c.
References is_cr(), octstr_append(), octstr_copy, octstr_destroy(), octstr_get_char(), octstr_len(), and start.
Referenced by check_data_content_type_header(), check_data_x_wap_application_id_header(), pass_extension_headers(), and pass_optional_header().
|
static |
Definition at line 701 of file wap_push_pap_mime.c.
References boundary, drop_separator(), error(), http_header_add(), name, octstr_case_nsearch(), octstr_create, octstr_delete(), octstr_destroy(), octstr_get_cstr, octstr_len(), octstr_search(), parse_terminator(), and pass_field_value().
Referenced by pass_data_headers().