aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/tls_test_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/https/tls_test_common.h')
-rw-r--r--src/testcurl/https/tls_test_common.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/testcurl/https/tls_test_common.h b/src/testcurl/https/tls_test_common.h
index e3f552a8..80512f51 100644
--- a/src/testcurl/https/tls_test_common.h
+++ b/src/testcurl/https/tls_test_common.h
@@ -53,8 +53,6 @@ struct https_test_data
53{ 53{
54 void *cls; 54 void *cls;
55 int port; 55 int port;
56 const char *cipher_suite;
57 int proto_version;
58}; 56};
59 57
60struct CBC 58struct CBC
@@ -94,7 +92,6 @@ setup_ca_cert (void);
94 */ 92 */
95int 93int
96test_daemon_get (void *cls, 94test_daemon_get (void *cls,
97 const char *cipher_suite, int proto_version,
98 int port, int ver_peer); 95 int port, int ver_peer);
99 96
100void 97void
@@ -129,12 +126,10 @@ gen_test_file_url (char *url,
129 int port); 126 int port);
130 127
131int 128int
132send_curl_req (char *url, struct CBC *cbc, const char *cipher_suite, 129send_curl_req (char *url, struct CBC *cbc);
133 int proto_version);
134 130
135int 131int
136test_https_transfer (void *cls, int port, const char *cipher_suite, int 132test_https_transfer (void *cls, int port);
137 proto_version);
138 133
139int 134int
140setup_testcase (struct MHD_Daemon **d, int port, int daemon_flags, va_list 135setup_testcase (struct MHD_Daemon **d, int port, int daemon_flags, va_list
@@ -154,10 +149,9 @@ teardown_session (gnutls_session_t session,
154 149
155int 150int
156test_wrap (const char *test_name, int 151test_wrap (const char *test_name, int
157 (*test_function)(void *cls, int port, const char *cipher_suite, 152 (*test_function)(void *cls, int port), void *cls,
158 int proto_version), void *cls,
159 int port, 153 int port,
160 int daemon_flags, const char *cipher_suite, int proto_version, ...); 154 int daemon_flags, ...);
161 155
162int testsuite_curl_global_init (void); 156int testsuite_curl_global_init (void);
163 157