Lines Matching defs:body
1201 // now. We will update it when we get whole request body.
1941 std::string body;
1942 body = "<html><head><title>";
1943 body += status_string;
1944 body += ' ';
1945 body += reason_pharase;
1946 body += "</title></head><body><h1>";
1947 body += status_string;
1948 body += ' ';
1949 body += reason_pharase;
1950 body += "</h1><hr><address>";
1951 body += NGHTTPD_SERVER;
1952 body += " at port ";
1953 body += util::utos(port);
1954 body += "</address>";
1955 body += "</body></html>";
1961 std::cerr << "Could not open status response body file: errno=" << error;
1966 while ((nwrite = write(fd, body.c_str(), body.size())) == -1 &&
1971 std::cerr << "Could not write status response body into file: errno="