Home
last modified time | relevance | path

Searched refs:header (Results 1 – 20 of 20) sorted by relevance

/net-tools-3.4.0/tinydtls-0.8.2/
Ddtls_config.h.in12 /* Define to 1 if you have the <arpa/inet.h> header file. */
15 /* Define to 1 if you have the <assert.h> header file. */
18 /* Define to 1 if you have the <fcntl.h> header file. */
24 /* Define to 1 if you have the <inttypes.h> header file. */
31 /* Define to 1 if you have the <memory.h> header file. */
37 /* Define to 1 if you have the <netdb.h> header file. */
40 /* Define to 1 if you have the <netinet/in.h> header file. */
52 /* Define to 1 if you have the <stddef.h> header file. */
55 /* Define to 1 if you have the <stdint.h> header file. */
58 /* Define to 1 if you have the <stdlib.h> header file. */
[all …]
Dconfigure.in82 AC_MSG_NOTICE([skipping header checks for Contiki])
84 # Checks for header files.
Dconfigure1279 --includedir=DIR C header files [PREFIX/include]
1280 --oldincludedir=DIR C header files for non-gcc [/usr/include]
1811 /* System header to define __stub macros and hopefully few prototypes,
4756 --header=FILE[:TEMPLATE]
4757 instantiate the configuration header FILE
Ddtls.c2880 dtls_record_header_t *header = DTLS_RECORD_HEADER(packet); in decrypt_verify() local
2881 dtls_security_parameters_t *security = dtls_security_params_epoch(peer, dtls_get_epoch(header)); in decrypt_verify()
2888 dtls_alert("No security context for epoch: %i\n", dtls_get_epoch(header)); in decrypt_verify()
/net-tools-3.4.0/python-websocket-server/websocket_server/
Dwebsocket_server.py271 header = bytearray()
277 header.append(FIN | opcode)
278 header.append(payload_length)
282 header.append(FIN | opcode)
283 header.append(PAYLOAD_LEN_EXT16)
284 header.extend(struct.pack(">H", payload_length))
288 header.append(FIN | opcode)
289 header.append(PAYLOAD_LEN_EXT64)
290 header.extend(struct.pack(">Q", payload_length))
296 self.request.send(header + payload)
[all …]
/net-tools-3.4.0/mbedtls-2.4.0/library/
Dpem.c206 int mbedtls_pem_read_buffer( mbedtls_pem_context *ctx, const char *header, const char *footer, in mbedtls_pem_read_buffer() argument
227 s1 = (unsigned char *) strstr( (const char *) data, header ); in mbedtls_pem_read_buffer()
237 s1 += strlen( header ); in mbedtls_pem_read_buffer()
396 int mbedtls_pem_write_buffer( const char *header, const char *footer, in mbedtls_pem_write_buffer() argument
405 add_len = strlen( header ) + strlen( footer ) + ( use_len / 64 ) + 1; in mbedtls_pem_write_buffer()
423 memcpy( p, header, strlen( header ) ); in mbedtls_pem_write_buffer()
424 p += strlen( header ); in mbedtls_pem_write_buffer()
Dentropy.c171 unsigned char header[2]; in entropy_update() local
187 header[0] = source_id; in entropy_update()
188 header[1] = use_len & 0xFF; in entropy_update()
191 mbedtls_sha512_update( &ctx->accumulator, header, 2 ); in entropy_update()
194 mbedtls_sha256_update( &ctx->accumulator, header, 2 ); in entropy_update()
Dssl_tls.c1210 unsigned char header[11]; in ssl_mac() local
1222 memcpy( header, ctr, 8 ); in ssl_mac()
1223 header[ 8] = (unsigned char) type; in ssl_mac()
1224 header[ 9] = (unsigned char)( len >> 8 ); in ssl_mac()
1225 header[10] = (unsigned char)( len ); in ssl_mac()
1231 mbedtls_md_update( md_ctx, header, 11 ); in ssl_mac()
/net-tools-3.4.0/mbedtls-2.4.0/include/mbedtls/
Dpem.h90 int mbedtls_pem_read_buffer( mbedtls_pem_context *ctx, const char *header, const char *footer,
120 int mbedtls_pem_write_buffer( const char *header, const char *footer,
/net-tools-3.4.0/mbedtls-2.4.0/tests/suites/
Dtest_suite_entropy.function309 unsigned char header[2];
345 header[1] = MBEDTLS_ENTROPY_BLOCK_SIZE;
349 header[0] = 0;
350 mbedtls_sha512_update( &accumulator, header, 2 );
361 header[0] = MBEDTLS_ENTROPY_SOURCE_MANUAL;
362 mbedtls_sha512_update( &accumulator, header, 2 );
365 header[0] = 0;
366 mbedtls_sha512_update( &accumulator, header, 2 );
/net-tools-3.4.0/libcoap/
DTODO14 -> Remove the #include "coap_config.h" directive from the public header files.
16 -> Use coap.h as the only header to include from the public view.
Dconfigure.ac20 # Generate one configuration header file for building the library itself with
207 # Check for CUnit header files
210 …[AC_MSG_WARN([==> You want to build the testing binary but the needed header files for CUnit could…
269 # Checks for header files.
DCONTRIBUTE150 header files as they are the public part of the libcoap and only use the
/net-tools-3.4.0/
Dthroughput-client.c43 struct header { struct
493 struct header *hdr; in main()
508 hdr = (struct header *)data[i].buf; in main()
/net-tools-3.4.0/libcoap/include/coap/
Dcoap.h.in2 * coap.h -- main header file for CoAP stack of libcoap
/net-tools-3.4.0/mbedtls-2.4.0/doxygen/
Dmbedtls.doxyfile131 # path before files name in the file list and in the header files. If set
149 # the reader which header file to include in order to use a class.
150 # If left blank only the name of the header file containing the class
383 # If set to NO only classes defined in header files are included.
845 # will generate a verbatim copy of the header file for each class for
867 # classes will be put under the same header in the alphabetical index.
894 # The HTML_HEADER tag can be used to specify a personal HTML header for
896 # standard header. Note that when using a custom header you are responsible
899 # It is advised to generate a default header using "doxygen -w html
900 # header.html footer.html stylesheet.css YourConfigFile" and then modify
[all …]
/net-tools-3.4.0/tinydtls-0.8.2/doc/
DDoxyfile.in105 # path before files name in the file list and in the header files. If set
121 # the reader which header file to include in order to use a class.
122 # If left blank only the name of the header file containing the class
314 # If set to NO only classes defined in header files are included.
735 # will generate a verbatim copy of the header file for each class for
757 # classes will be put under the same header in the alphabetical index.
784 # The HTML_HEADER tag can be used to specify a personal HTML header for
786 # standard header.
1059 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
1060 # the generated latex document. The header should contain everything until
[all …]
/net-tools-3.4.0/libcoap/doc/
DDoxyfile.in139 # before files name in the file list and in the header files. If set to NO the
159 # header file to include in order to use a class. If left blank only the name of
160 # the header file containing the class definition is used. Otherwise one should
434 # only classes defined in header files are included. Does not have any effect
975 # verbatim copy of the header file for each class for which an include is
1020 # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
1051 # The HTML_HEADER tag can be used to specify a user-defined HTML header file for
1053 # standard header.
1055 # To get valid HTML the header file that includes any scripts and style sheets
1058 # default header using
[all …]
/net-tools-3.4.0/tinydtls-0.8.2/sha2/
DREADME66 header file (or in the sha2.c file in some cases), or on the command
91 included in the inttypes.h header file. Those wanting to use inttypes.h
/net-tools-3.4.0/mbedtls-2.4.0/
DChangeLog79 net.c. For consistency, the corresponding header file, net.h, is marked as
597 * Remove some unneeded inclusions of header files from the standard library
1100 * Support for AIX header locations in net.c module
1294 settings without editing header files by using POLARSSL_CONFIG_OPTIONS