Home | History | Annotate | Download | only in apps

Lines Matching defs:www

9  * https://www.openssl.org/source/license.html
90 static int www = 0;
826 {"www", OPT_WWW, '-', "Respond to a 'GET /' with a status page"},
827 {"WWW", OPT_UPPER_WWW, '-', "Respond to a 'GET with the file ./path"},
838 {"HTTP", OPT_HTTP, '-', "Like -WWW but ./path includes HTTP headers"},
1069 www = 0;
1447 www = 1;
1450 www = 2;
1453 www = 3;
1618 if (www && socket_type == SOCK_DGRAM) {
1619 BIO_printf(bio_err, "Can't use -HTTP, -www or -WWW with DTLS\n");
1641 if (early_data && (www > 0 || rev)) {
1643 "Can't use -early_data in combination with -www, -WWW, -HTTP, or -rev\n");
2157 else if (www)
3012 buf = app_malloc(bufsize, "server www buffer");
3111 if (((www == 1) && (strncmp("GET ", buf, 4) == 0)) ||
3112 ((www == 2) && (strncmp("GET /stats ", buf, 11) == 0))) {
3118 if (www == 1 && strncmp("GET /reneg", buf, 10) == 0) {
3243 } else if ((www == 2 || www == 3)
3317 if (www == 2) {