Searched refs:req_method (Results 1 – 4 of 4) sorted by relevance
149 SSL_METHOD* req_method = NULL; in cyassl_connect_step1() local172 req_method = SSLv23_client_method(); in cyassl_connect_step1()176 req_method = TLSv1_client_method(); in cyassl_connect_step1()182 req_method = TLSv1_client_method(); in cyassl_connect_step1()190 req_method = TLSv1_1_client_method(); in cyassl_connect_step1()194 req_method = TLSv1_2_client_method(); in cyassl_connect_step1()199 req_method = wolfTLSv1_3_client_method(); in cyassl_connect_step1()208 req_method = SSLv3_client_method(); in cyassl_connect_step1()223 if(!req_method) { in cyassl_connect_step1()230 BACKEND->ctx = SSL_CTX_new(req_method); in cyassl_connect_step1()
97 SSL_METHOD *req_method = NULL; in mesalink_connect_step1() local117 req_method = TLSv1_2_client_method(); in mesalink_connect_step1()120 req_method = TLSv1_3_client_method(); in mesalink_connect_step1()130 if(!req_method) { in mesalink_connect_step1()137 BACKEND->ctx = SSL_CTX_new(req_method); in mesalink_connect_step1()
2292 SSL_METHOD_QUAL SSL_METHOD *req_method = NULL; in ossl_connect_step1() local2341 req_method = TLS_client_method(); in ossl_connect_step1()2343 req_method = SSLv23_client_method(); in ossl_connect_step1()2356 req_method = SSLv2_client_method(); in ossl_connect_step1()2369 req_method = SSLv3_client_method(); in ossl_connect_step1()2380 BACKEND->ctx = SSL_CTX_new(req_method); in ossl_connect_step1()
2187 *req_method, /* HTTP request method */ in httpReadRequest() local2248 req_method = line; in httpReadRequest()2287 if (!strcmp(req_method, "OPTIONS")) in httpReadRequest()2289 else if (!strcmp(req_method, "GET")) in httpReadRequest()2291 else if (!strcmp(req_method, "HEAD")) in httpReadRequest()2293 else if (!strcmp(req_method, "POST")) in httpReadRequest()2295 else if (!strcmp(req_method, "PUT")) in httpReadRequest()2297 else if (!strcmp(req_method, "DELETE")) in httpReadRequest()2299 else if (!strcmp(req_method, "TRACE")) in httpReadRequest()2301 else if (!strcmp(req_method, "CONNECT")) in httpReadRequest()[all …]