Lines Matching defs:HTTPS
1 /* $NetBSD: https-client.c,v 1.1.1.2 2021/04/07 02:43:15 christos Exp $ */
5 It just GETs an https URL given on the command-line and prints the response
9 https code paths.
99 fputs(" https-client -url <https-url> [-data data-file.bin] [-ignore-cert] [-retries num] [-timeout sec] [-crt crt]\n", stderr);
101 fputs(" https-client -url https://ip.appspot.com/\n", stderr);
174 printf("https server '%s' has this certificate, "
239 enum { HTTP, HTTPS } type = HTTP;
313 if (scheme == NULL || (strcasecmp(scheme, "https") != 0 &&
315 err("url must be http or https");
395 * https://crypto.stanford.edu/~dabo/pubs/abstracts/ssl-client-bugs.html
436 type = HTTPS;