X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=httpd.cpp;fp=httpd.cpp;h=1e4005453fc5aad0fe02600106f22f85ac7005d3;hb=24bffd6b8467cd91764514e8f666fe68849dfc45;hp=5226885be2e1e4e4fb76ba7534c9ee58b14fdba4;hpb=19d366169ffe7608aef01fe4db2c34f56a7be9d3;p=nageru diff --git a/httpd.cpp b/httpd.cpp index 5226885..1e40054 100644 --- a/httpd.cpp +++ b/httpd.cpp @@ -57,12 +57,9 @@ int HTTPD::answer_to_connection(MHD_Connection *connection, { // See if the URL ends in “.metacube”. HTTPD::Stream::Framing framing; - printf("url=[%s]\n", url); if (strstr(url, ".metacube") == url + strlen(url) - strlen(".metacube")) { - printf("metacube\n"); framing = HTTPD::Stream::FRAMING_METACUBE; } else { - printf("raw\n"); framing = HTTPD::Stream::FRAMING_RAW; }