aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/test_https_get_parallel_threads.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/https/test_https_get_parallel_threads.c')
-rw-r--r--src/testcurl/https/test_https_get_parallel_threads.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testcurl/https/test_https_get_parallel_threads.c b/src/testcurl/https/test_https_get_parallel_threads.c
index 3fc0e189..470072cb 100644
--- a/src/testcurl/https/test_https_get_parallel_threads.c
+++ b/src/testcurl/https/test_https_get_parallel_threads.c
@@ -61,7 +61,7 @@ https_transfer_thread_adapter (void *args)
61 struct https_test_data *cargs = args; 61 struct https_test_data *cargs = args;
62 int ret; 62 int ret;
63 63
64 /* time spread incomming requests */ 64 /* time spread incoming requests */
65 usleep ((useconds_t) 10.0 * ((double) rand ()) / ((double) RAND_MAX)); 65 usleep ((useconds_t) 10.0 * ((double) rand ()) / ((double) RAND_MAX));
66 ret = test_https_transfer (cargs->cls, cargs->port, 66 ret = test_https_transfer (cargs->cls, cargs->port,
67 cargs->cipher_suite, cargs->proto_version); 67 cargs->cipher_suite, cargs->proto_version);
@@ -76,7 +76,7 @@ https_transfer_thread_adapter (void *args)
76 * 76 *
77 * @return: 0 upon all client requests returning '0', -1 otherwise. 77 * @return: 0 upon all client requests returning '0', -1 otherwise.
78 * 78 *
79 * TODO : make client_count a parameter - numver of curl client threads to spawn 79 * TODO : make client_count a parameter - number of curl client threads to spawn
80 */ 80 */
81static int 81static int
82test_single_client (void *cls, int port, const char *cipher_suite, 82test_single_client (void *cls, int port, const char *cipher_suite,
@@ -99,7 +99,7 @@ test_single_client (void *cls, int port, const char *cipher_suite,
99 * 99 *
100 * @return: 0 upon all client requests returning '0', -1 otherwise. 100 * @return: 0 upon all client requests returning '0', -1 otherwise.
101 * 101 *
102 * TODO : make client_count a parameter - numver of curl client threads to spawn 102 * TODO : make client_count a parameter - number of curl client threads to spawn
103 */ 103 */
104static int 104static int
105test_parallel_clients (void *cls, int port, const char *cipher_suite, 105test_parallel_clients (void *cls, int port, const char *cipher_suite,