Home
last modified time | relevance | path

Searched defs:options (Results 1 – 25 of 29) sorted by relevance

12

/openthread-3.5.0/third_party/mbedtls/repo/programs/ssl/
Dssl_client2.c448 struct options struct
450 const char *server_name; /* hostname of the server (client only) */
451 const char *server_addr; /* address of the server (client only) */
452 const char *server_port; /* port on which the ssl service runs */
453 int debug_level; /* level of debugging */
454 int nbio; /* should I/O be blocking? */
455 int event; /* loop or event-driven IO? level or edge triggered? */
456 uint32_t read_timeout; /* timeout on mbedtls_ssl_read() in milliseconds */
457 int max_resend; /* DTLS times to resend on read timeout */
458 const char *request_page; /* page on server to request */
[all …]
Dssl_server2.c544 struct options struct
546 const char *server_addr; /* address on which the ssl service runs */
547 const char *server_port; /* port on which the ssl service runs */
548 int debug_level; /* level of debugging */
549 int nbio; /* should I/O be blocking? */
550 int event; /* loop or event-driven IO? level or edge triggered? */
551 uint32_t read_timeout; /* timeout on mbedtls_ssl_read() in milliseconds */
552 int response_size; /* pad response with header to requested size */
553 uint16_t buffer_size; /* IO buffer size */
554 const char *ca_file; /* the file with the CA certificate(s) */
[all …]
Dssl_mail_client.c148 struct options struct
150 const char *server_name; /* hostname of the server (client only) */
151 const char *server_port; /* port on which the ssl service runs */
152 int debug_level; /* level of debugging */
153 int authentication; /* if authentication is required */
154 int mode; /* SSL/TLS (0) or STARTTLS (1) */
155 const char *user_name; /* username to use for authentication */
156 const char *user_pwd; /* password to use for authentication */
157 const char *mail_from; /* E-Mail address to use as sender */
158 const char *mail_to; /* E-Mail address to use as recipient */
[all …]
/openthread-3.5.0/third_party/mbedtls/repo/programs/x509/
Dcert_write.c160 struct options struct
162 const char *issuer_crt; /* filename of the issuer certificate */
163 const char *request_file; /* filename of the certificate request */
164 const char *subject_key; /* filename of the subject key file */
165 const char *issuer_key; /* filename of the issuer key file */
166 const char *subject_pwd; /* password for the subject key file */
167 const char *issuer_pwd; /* password for the issuer key file */
168 const char *output_file; /* where to store the constructed CRT */
169 const char *subject_name; /* subject name for certificate */
170 const char *issuer_name; /* issuer name for certificate */
[all …]
Dcert_req.c111 struct options struct
113 const char *filename; /* filename of the key file */
114 const char *password; /* password for the key file */
115 int debug_level; /* level of debugging */
116 const char *output_file; /* where to store the constructed key file */
117 const char *subject_name; /* subject name for certificate request */
118 unsigned char key_usage; /* key usage flags */
119 int force_key_usage; /* Force adding the KeyUsage extension */
120 unsigned char ns_cert_type; /* NS cert type */
121 int force_ns_cert_type; /* Force adding NsCertType extension */
[all …]
Dcert_app.c105 struct options struct
107 int mode; /* the mode to run the application in */
108 const char *filename; /* filename of the certificate file */
109 const char *ca_file; /* the file with the CA certificate(s) */
110 const char *crl_file; /* the file with the CRL to use */
111 const char *ca_path; /* the path with the CA certificate(s) reside */
112 const char *server_name; /* hostname of the server (client only) */
113 const char *server_port; /* port on which the ssl service runs */
114 int debug_level; /* level of debugging */
115 int permissive; /* permissive parsing */
Dload_roots.c99 struct options struct
101 const char **filenames; /* NULL-terminated list of file names */
102 unsigned iterations; /* Number of iterations to time */
103 int prime_cache; /* Prime the disk read cache? */
Dcrl_app.c66 struct options struct
68 const char *filename; /* filename of the certificate file */
Dreq_app.c66 struct options struct
68 const char *filename; /* filename of the certificate request */
/openthread-3.5.0/third_party/mbedtls/repo/programs/test/
Dudp_proxy.c147 static struct options struct
149 const char *server_addr; /* address to forward packets to */
150 const char *server_port; /* port to forward packets to */
151 const char *listen_addr; /* address for accepting client connections */
152 const char *listen_port; /* port for accepting client connections */
154 int duplicate; /* duplicate 1 in N packets (none if 0) */
155 int delay; /* delay 1 packet in N (none if 0) */
156 int delay_ccs; /* delay ChangeCipherSpec */
157 char* delay_cli[MAX_DELAYED_HS]; /* handshake types of messages from
159 uint8_t delay_cli_cnt; /* Number of entries in delay_cli. */
[all …]
/openthread-3.5.0/third_party/mbedtls/repo/programs/pkey/
Dgen_key.c142 struct options struct
144 int type; /* the type of key to generate */
145 int rsa_keysize; /* length of key in bits */
146 int ec_curve; /* curve identifier for EC keys */
147 const char *filename; /* filename of the key file */
148 int format; /* the output format to use */
149 int use_dev_random; /* use /dev/random as entropy source */
Dkey_app.c79 struct options struct
81 int mode; /* the mode to run the application in */
82 const char *filename; /* filename of the key file */
83 const char *password; /* password for the private key */
84 const char *password_file; /* password_file for the private key */
Dkey_app_writer.c103 struct options struct
105 int mode; /* the mode to run the application in */
106 const char *filename; /* filename of the key file */
107 int output_mode; /* the output mode to use */
108 const char *output_file; /* where to store the constructed key file */
109 int output_format; /* the output format to use */
/openthread-3.5.0/third_party/mbedtls/repo/tests/scripts/
Dtest_config_script.py83 def list_presets(options): argument
98 def run_one(options, args, stem_prefix='', input_file=None): argument
150 def run_all(options): argument
Dpsa_collect_statuses.py82 def collect_status_logs(options): argument
Dtest_psa_constant_names.py101 def __init__(self, options) -> None: argument
Dcheck_test_cases.py33 def __init__(self, options): argument
Dgenerate_psa_tests.py703 def __init__(self, options) -> None: argument
709 def get_option(options, name: str, default: T) -> T: argument
/openthread-3.5.0/third_party/mbedtls/repo/programs/util/
Dpem2der.c70 struct options struct
72 const char *filename; /* filename of the input file */
73 const char *output_file; /* where to store the output */
/openthread-3.5.0/examples/platforms/simulation/
Dsystem.c116 static const char options[] = "Ehts:l:"; in otSysInit() local
118 static const char options[] = "Ehts:"; in otSysInit() local
/openthread-3.5.0/third_party/mbedtls/repo/scripts/
Dassemble_changelog.py316 def list_merges(some_hash, target, *options):
441 def list_files_to_merge(options): argument
450 def merge_entries(options): argument
471 def show_file_timestamps(options): argument
481 def set_defaults(options): argument
/openthread-3.5.0/third_party/mbedtls/repo/programs/fuzz/
Dfuzz_client.c45 uint16_t options; in LLVMFuzzerTestOneInput() local
Dfuzz_server.c48 uint8_t options; in LLVMFuzzerTestOneInput() local
/openthread-3.5.0/tests/scripts/thread-cert/
Dcoap.py207 options, argument
245 def options(self): member in CoapMessage
316 def options(self): member in CoapMessageProxy
380 def _uri_path_from(self, options): argument
/openthread-3.5.0/third_party/mbedtls/repo/docs/architecture/testing/
Dinvasive-testing.md63 #### Rules for function substitution
221 #### Guidelines for compile-time options

12