Home
last modified time | relevance | path

Searched refs:header_field (Results 1 – 25 of 227) sorted by relevance

12345678910

/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/unimrcp/libs/apr-toolkit/src/
H A Dapt_header_field.c32 return header_field; in apt_header_field_alloc()
38 apt_header_field_t *header_field; in apt_header_field_create() local
47 return header_field; in apt_header_field_create()
53 apt_header_field_t *header_field; in apt_header_field_create_c() local
62 return header_field; in apt_header_field_create_c()
70 apt_header_field_t *header_field; in apt_header_field_create_from_line() local
95 return header_field; in apt_header_field_create_from_line()
106 return header_field; in apt_header_field_copy()
136 header->arr[header_field->id] = header_field; in apt_header_section_field_add()
150 header->arr[header_field->id] = header_field; in apt_header_section_field_insert()
[all …]
H A Dapt_text_message.c58 apt_header_field_t *header_field; in apt_header_field_parse() local
88 header_field = apt_header_field_alloc(pool); in apt_header_field_parse()
95 header_field->name.buf[header_field->name.length] = '\0'; in apt_header_field_parse()
99 header_field->value.buf = apr_palloc(pool, header_field->value.length + 1); in apt_header_field_parse()
115 header_field->value.buf[header_field->value.length] = '\0'; in apt_header_field_parse()
117 return header_field; in apt_header_field_parse()
123 return apt_text_name_value_insert(stream,&header_field->name,&header_field->value); in apt_header_field_generate()
129 apt_header_field_t *header_field; in apt_header_section_parse() local
134 if(header_field) { in apt_header_section_parse()
157 apt_header_field_t *header_field; in apt_header_section_generate() local
[all …]
H A Dapt_multipart_content.c225 apt_header_field_t *header_field; in apt_multipart_content_get() local
286 for(header_field = APR_RING_FIRST(&content_part->header.ring); in apt_multipart_content_get()
287 header_field != APR_RING_SENTINEL(&content_part->header.ring, apt_header_field_t, link); in apt_multipart_content_get()
288 header_field = APR_RING_NEXT(header_field, link)) { in apt_multipart_content_get()
289 if(strncmp(header_field->name.buf,CONTENT_LENGTH_HEADER,header_field->name.length) == 0) { in apt_multipart_content_get()
290 content_part->length = &header_field->value; in apt_multipart_content_get()
292 else if(strncmp(header_field->name.buf,CONTENT_TYPE_HEADER,header_field->name.length) == 0) { in apt_multipart_content_get()
293 content_part->type = &header_field->value; in apt_multipart_content_get()
295 else if(strncmp(header_field->name.buf,CONTENT_ID_HEADER,header_field->name.length) == 0) { in apt_multipart_content_get()
296 content_part->id = &header_field->value; in apt_multipart_content_get()
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/unimrcp/tests/mrcptest/src/
H A Dtransparent_set_get_suite.c51 if(header_field) { in speak_request_create()
57 if(header_field) { in speak_request_create()
77 header_field = NULL; in speak_request_test()
79 if(strncasecmp(header_field->name.buf,"Content-Type",header_field->name.length) == 0) { in speak_request_test()
129 if(header_field) { in speak_event_create()
152 if(header_field) { in get_params_request_create()
157 if(header_field) { in get_params_request_create()
162 if(header_field) { in get_params_request_create()
179 if(header_field) { in get_params_response_create()
184 if(header_field) { in get_params_response_create()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/unimrcp/libs/mrcp/message/src/
H A Dmrcp_header.c89 apt_header_field_t *header_field; in mrcp_header_fields_parse() local
92 header_field = APR_RING_NEXT(header_field, link)) { in mrcp_header_fields_parse()
118 header_field->id, in mrcp_header_accessor_value_duplicate()
119 &header_field->value, in mrcp_header_accessor_value_duplicate()
127 &header_field->value, in mrcp_header_accessor_value_duplicate()
136 apt_header_field_t *header_field; in mrcp_header_fields_set() local
143 if(header_field) { in mrcp_header_fields_set()
162 apt_header_field_t *header_field; in mrcp_header_fields_get() local
170 if(header_field) { in mrcp_header_fields_get()
202 if(header_field) { in mrcp_header_fields_inherit()
[all …]
H A Dmrcp_header_accessor.c23 …eld_value_parse(mrcp_header_accessor_t *accessor, apt_header_field_t *header_field, apr_pool_t *po… in mrcp_header_field_value_parse() argument
30 …ing_table_id_find(accessor->vtable->field_table,accessor->vtable->field_count,&header_field->name); in mrcp_header_field_value_parse()
34 header_field->id = id; in mrcp_header_field_value_parse()
36 if(header_field->value.length) { in mrcp_header_field_value_parse()
37 if(accessor->vtable->parse_field(accessor,header_field->id,&header_field->value,pool) == FALSE) { in mrcp_header_field_value_parse()
48 apt_header_field_t *header_field; in mrcp_header_field_value_generate() local
55 header_field = apt_header_field_alloc(pool); in mrcp_header_field_value_generate()
58 header_field->name = *name; in mrcp_header_field_value_generate()
62 if(accessor->vtable->generate_field(accessor,id,&header_field->value,pool) == FALSE) { in mrcp_header_field_value_generate()
67 return header_field; in mrcp_header_field_value_generate()
H A Dmrcp_message.c186 apt_header_field_t *header_field = mrcp_header_field_value_generate( in mrcp_generic_header_property_add() local
191 if(!header_field) { in mrcp_generic_header_property_add()
194 header_field->id = id; in mrcp_generic_header_property_add()
206 if(!header_field) { in mrcp_generic_header_name_property_add()
209 header_field->id = id; in mrcp_generic_header_name_property_add()
221 if(!header_field) { in mrcp_resource_header_property_add()
224 header_field->id = id + GENERIC_HEADER_COUNT; in mrcp_resource_header_property_add()
236 if(!header_field) { in mrcp_resource_header_name_property_add()
239 header_field->id = id + GENERIC_HEADER_COUNT; in mrcp_resource_header_name_property_add()
247 if(header_field) { in mrcp_message_next_header_field_get()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/unimrcp/libs/uni-rtsp/src/
H A Drtsp_header.c369 header_field->id = apt_string_table_id_find( in rtsp_header_field_add()
372 &header_field->name); in rtsp_header_field_add()
374 rtsp_header_field_value_parse(header,header_field->id,&header_field->value,pool); in rtsp_header_field_add()
383 apt_header_field_t *header_field; in rtsp_header_fields_parse() local
386 header_field = APR_RING_NEXT(header_field, link)) { in rtsp_header_fields_parse()
391 &header_field->name); in rtsp_header_fields_parse()
393 rtsp_header_field_value_parse(header,header_field->id,&header_field->value,pool); in rtsp_header_fields_parse()
403 apt_header_field_t *header_field; in rtsp_header_property_add() local
405 if(header_field) { in rtsp_header_property_add()
414 header_field->name = *name; in rtsp_header_property_add()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/unimrcp/libs/mrcp/message/include/
H A Dmrcp_message.h152 …apt_header_field_t *header_field = apt_header_section_field_get(&message->header.header_section,id… in mrcp_generic_header_property_remove() local
153 if(header_field) { in mrcp_generic_header_property_remove()
154 return apt_header_section_field_remove(&message->header.header_section,header_field); in mrcp_generic_header_property_remove()
210 …apt_header_field_t *header_field = apt_header_section_field_get(&message->header.header_section,id… in mrcp_resource_header_property_remove() local
211 if(header_field) { in mrcp_resource_header_property_remove()
212 return apt_header_section_field_remove(&message->header.header_section,header_field); in mrcp_resource_header_property_remove()
232 …apt_bool_t mrcp_message_header_field_add(mrcp_message_t *message, apt_header_field_t *header_field) in mrcp_message_header_field_add() argument
234 return mrcp_header_field_add(&message->header,header_field,message->pool); in mrcp_message_header_field_add()
249 apt_header_field_t *header_field);
/dports/mail/nocc/nocc-1.9.10/classes/
H A Dnocc_header.php74 $header_field = explode(':', $header_line);
75 switch (strtolower($header_field[0])) {
79 $this->_priority = $this->_parsePriority($header_field[1]);
82 $content_type = explode(';', $header_field[1]);
87 $value = strtolower(trim($header_field[1]));
96 $this->_status = trim($header_field[1]);
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/unimrcp/libs/apr-toolkit/include/
H A Dapt_header_field.h126 …ol_t) apt_header_section_field_add(apt_header_section_t *header, apt_header_field_t *header_field);
133 …t) apt_header_section_field_insert(apt_header_section_t *header, apt_header_field_t *header_field);
141 …ol_t) apt_header_section_field_set(apt_header_section_t *header, apt_header_field_t *header_field);
148 …t) apt_header_section_field_remove(apt_header_section_t *header, apt_header_field_t *header_field);
/dports/net/tcpflow/tcpflow-1.5.0/src/
H A Dscan_http.cpp68 headers(), last_on_header(NOTHING), header_value(), header_field(), in scan_http_cbo()
83 std::string header_value, header_field; member in scan_http_cbo
151 header_field = field; in on_header_field()
157 headers[header_field] = header_value; in on_header_field()
158 header_field = field; in on_header_field()
163 header_field.append(field); in on_header_field()
206 headers[header_field] = header_value; in on_headers_complete()
207 header_field=""; in on_headers_complete()
363 header_field = ""; in on_message_complete()
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/unimrcp/libs/uni-rtsp/include/
H A Drtsp_header.h205 …l_t) rtsp_header_field_add(rtsp_header_t *header, apt_header_field_t *header_field, apr_pool_t *po…
216 apt_header_field_t *header_field = apt_header_section_field_get(&header->header_section,id); in rtsp_header_property_remove() local
217 if(header_field) { in rtsp_header_property_remove()
218 return apt_header_section_field_remove(&header->header_section,header_field); in rtsp_header_property_remove()
/dports/devel/aws-c-http/aws-c-http-0.6.8/source/
H A Dh2_decoder.c1195 struct aws_http_header header_field = { in s_flush_pseudoheaders() local
1207 decoder, on_headers_i, &header_field, name_enum, current_block->block_type); in s_flush_pseudoheaders()
1228 const struct aws_http_header *header_field) { in s_process_header_field() argument
1235 const struct aws_byte_cursor name = header_field->name; in s_process_header_field()
1283 current_block->pseudoheader_compression[pseudoheader_enum] = header_field->compression; in s_process_header_field()
1285 aws_string_new_from_cursor(decoder->alloc, &header_field->value); in s_process_header_field()
1321 current_block->cookie_header_compression_type = header_field->compression; in s_process_header_field()
1502 const struct aws_http_header *header_field = &result.data.header_field; in s_state_fn_header_block_entry() local
1508 AWS_BYTE_CURSOR_PRI(header_field->name), in s_state_fn_header_block_entry()
1509 AWS_BYTE_CURSOR_PRI(header_field->value)); in s_state_fn_header_block_entry()
[all …]
/dports/mail/nullmailer/nullmailer-2.2/src/
H A Dinject.cc149 struct header_field struct
209 static header_field header_fields[] = {
238 #define header_field_count (sizeof header_fields/sizeof(header_field))
249 static header_field& header_field_from = header_fields[1];
250 static header_field& header_field_mid = header_fields[17];
251 static header_field& header_field_rpath = header_fields[3];
316 header_field& h = header_fields[i]; in parse_line()
/dports/mail/dovecot/dovecot-2.3.17/src/lib-storage/
H A Dmailbox-header.c13 struct mail_cache_field *fields, header_field = { in mailbox_header_lookup_init_real() local
39 header_field.name = t_strconcat("hdr.", headers[i], NULL); in mailbox_header_lookup_init_real()
40 fields[j++] = header_field; in mailbox_header_lookup_init_real()
/dports/devel/glib20/glib-2.70.4/gio/
H A Dgdbusmessage.c1050 g_return_val_if_fail ((guint) header_field < 256, NULL); in g_dbus_message_get_header()
1072 g_return_if_fail ((guint) header_field < 256); in g_dbus_message_set_header()
2270 guchar header_field; in g_dbus_message_new_from_blob() local
2274 &header_field, in g_dbus_message_new_from_blob()
2960 GDBusMessageHeaderField header_field) in get_uint32_header() argument
2975 GDBusMessageHeaderField header_field) in get_string_header() argument
3022 GDBusMessageHeaderField header_field, in set_uint32_header() argument
3026 header_field, in set_uint32_header()
3036 header_field, in set_string_header()
3046 header_field, in set_object_path_header()
[all …]
/dports/devel/aws-c-http/aws-c-http-0.6.8/tests/
H A Dtest_hpack.c696 const struct aws_http_header *header_field, in s_check_header() argument
701 ASSERT_BIN_ARRAYS_EQUALS(name, strlen(name), header_field->name.ptr, header_field->name.len); in s_check_header()
702 … ASSERT_BIN_ARRAYS_EQUALS(value, strlen(value), header_field->value.ptr, header_field->value.len); in s_check_header()
703 ASSERT_INT_EQUALS(compression, header_field->compression); in s_check_header()
733 …ASSERT_SUCCESS(s_check_header(&result.data.header_field, ":status", "302", AWS_HTTP_HEADER_COMPRES… in AWS_TEST_CASE()
737 …ASSERT_SUCCESS(s_check_header(&result.data.header_field, "a", "b", AWS_HTTP_HEADER_COMPRESSION_USE… in AWS_TEST_CASE()
741 …ASSERT_SUCCESS(s_check_header(&result.data.header_field, ":status", "302", AWS_HTTP_HEADER_COMPRES… in AWS_TEST_CASE()
/dports/net/p5-Net-STOMP-Client/Net-STOMP-Client-2.3/t/
H A D2message.t27 is($message->header_field("foo"), "bar", "frame -> message header (binary)");
37 is($message->header_field("foo"), "bar", "frame -> message header (text)");
/dports/net/p5-Net-Mosso-CloudFiles/Net-Mosso-CloudFiles-0.44/lib/Net/Mosso/CloudFiles/
H A DObject.pm233 my $header_field;
235 $header_field = 'X-Object-Meta-' . $key;
237 $header_field =~ s/_/-/g;
239 $headers->header($header_field => $self->object_metadata->{$key});
/dports/mail/enma/enma-1.2.0/libsauth/src/
H A Ddkimauthor.c88 const char **header_field, const char **header_value, InetMailbox **mailbox) in DkimAuthor_extract() argument
120 SETDEREF(header_field, headerf); in DkimAuthor_extract()
/dports/www/py-starlette/starlette-0.17.1/starlette/
H A Dformparsers.py178 header_field = b""
199 header_field += message_bytes
203 field = header_field.lower()
208 header_field = b""
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/network/
H A Dheader_field_tokenizer.cc56 HeaderFieldTokenizer::HeaderFieldTokenizer(const String& header_field) in HeaderFieldTokenizer() argument
57 : index_(0u), input_(header_field) { in HeaderFieldTokenizer()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/network/
H A Dheader_field_tokenizer.cc56 HeaderFieldTokenizer::HeaderFieldTokenizer(const String& header_field) in HeaderFieldTokenizer() argument
57 : index_(0u), input_(header_field) { in HeaderFieldTokenizer()
/dports/cad/opentimer/OpenTimer-18d28ff/ot/parser-spef/pegtl/pegtl/contrib/
H A Dhttp.hpp45 struct header_field : seq< field_name, one< ':' >, OWS, field_value, OWS > {}; struct
68 …struct HTTP_message : seq< start_line, star< header_field, abnf::CRLF >, abnf::CRLF, opt< message_…
140 struct trailer_part : star< header_field, abnf::CRLF > {};

12345678910