Lines Matching defs:TestConfig
17 struct TestConfig { struct
18 int port = 0;
19 bool is_server = false;
20 bool is_dtls = false;
21 int resume_count = 0;
22 bool fallback_scsv = false;
23 std::string key_file;
24 std::string cert_file;
25 std::string expected_server_name;
26 std::string expected_certificate_types;
27 bool require_any_client_certificate = false;
28 std::string advertise_npn;
29 std::string expected_next_proto;
30 std::string select_next_proto;
31 bool async = false;
32 bool write_different_record_sizes = false;
33 bool partial_write = false;
34 bool no_tls13 = false;
35 bool no_tls12 = false;
36 bool no_tls11 = false;
37 bool no_tls1 = false;
38 bool no_ssl3 = false;
39 bool shim_writes_first = false;
40 std::string host_name;
41 std::string advertise_alpn;
42 std::string expected_alpn;
43 std::string expected_advertised_alpn;
44 std::string select_alpn;
45 bool decline_alpn = false;
46 bool expect_session_miss = false;
47 bool expect_extended_master_secret = false;
48 std::string psk;
49 std::string psk_identity;
50 std::string srtp_profiles;
51 int min_version = 0;
52 int max_version = 0;
53 int mtu = 0;
54 bool implicit_handshake = false;
55 std::string cipher;
56 bool handshake_never_done = false;
57 int export_keying_material = 0;
58 std::string export_label;
59 std::string export_context;
60 bool use_export_context = false;
61 bool expect_ticket_renewal = false;
85 bool ParseConfig(int argc, char **argv, TestConfig *out_config); argument