Home | History | Annotate | Download | only in cgi

Lines Matching full:https

70   {"HTTPS", "HTTPS"},
1433 int https = 0;
1435 if (!strcmp(hdf_get_value(cgi->hdf, "CGI.HTTPS", "off"), "on"))
1437 https = 1;
1444 cgiwrap_writef ("Location: %s://%s", https ? "https" : "http", host);
1449 if (!((https && port == 443) || (!https && port == 80)))