Lines Matching refs:bozo_printf
1147 bozo_printf(httpd, "%s 301 Document Moved\r\n", request->hr_proto);
1151 bozo_printf(httpd, "Location: %s\r\n", finalurl);
1152 bozo_printf(httpd, "\r\n");
1155 bozo_printf(httpd, "<html><head><title>Document Moved</title></head>\n");
1156 bozo_printf(httpd, "<body><h1>Document Moved</h1>\n");
1157 bozo_printf(httpd, "This document had moved <a href=\"%s\">here</a>\n",
1159 bozo_printf(httpd, "</body></html>\n");
1872 bozo_printf(httpd, "%s 304 Not Modified\r\n",
1874 bozo_printf(httpd, "\r\n");
1894 bozo_printf(httpd, "%s 206 Partial Content\r\n",
1897 bozo_printf(httpd, "%s 200 OK\r\n", request->hr_proto);
1905 bozo_printf(httpd, "\r\n");
1979 bozo_printf(httpd, "%s: %s\r\n", hdr->h_header,
1983 bozo_printf(httpd, "Date: %s\r\n", bozo_http_date(date, sizeof(date)));
1984 bozo_printf(httpd, "Server: %s\r\n", httpd->server_software);
1985 bozo_printf(httpd, "Accept-Ranges: bytes\r\n");
1993 bozo_printf(httpd, "Last-Modified: %s\r\n", filedate);
1996 bozo_printf(httpd, "Content-Type: %s\r\n", type);
1998 bozo_printf(httpd, "Content-Encoding: %s\r\n", encoding);
2003 bozo_printf(httpd,
2010 bozo_printf(httpd, "Content-Length: %qd\r\n", (long long)len);
2013 bozo_printf(httpd, "Connection: close\r\n");
2300 bozo_printf(httpd, "%s %s\r\n", proto, header);
2305 bozo_printf(httpd, "%s: %s\r\n", hdr->h_header,
2310 bozo_printf(httpd, "Content-Type: text/html\r\n");
2311 bozo_printf(httpd, "Content-Length: %d\r\n", size);
2312 bozo_printf(httpd, "Server: %s\r\n", httpd->server_software);
2314 bozo_printf(httpd, "Allow: %s\r\n", request->hr_allow);
2318 bozo_printf(httpd, "Connection: close\r\n");
2319 bozo_printf(httpd, "\r\n");
2323 bozo_printf(httpd, "%s", httpd->errorbuf);