summaryrefslogtreecommitdiffstats
path: root/httpd.c
diff options
context:
space:
mode:
authordscho <dscho>2002-12-06 16:03:50 +0000
committerdscho <dscho>2002-12-06 16:03:50 +0000
commit4d87189420b6225da7f38aa71aee840d816bd570 (patch)
tree2de78669b8dea0e6f8d6ae4e4d17ff825b5c6a88 /httpd.c
parentd60fda117b1d72d12984a07a4444d36a69da639e (diff)
downloadlibtdevnc-4d871894.tar.gz
libtdevnc-4d871894.zip
compiler warnings, contrib directory, new x11vnc from Karl Runge
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/httpd.c b/httpd.c
index 5207c72..328f416 100644
--- a/httpd.c
+++ b/httpd.c
@@ -266,7 +266,7 @@ httpProcessInput(rfbScreenInfoPtr rfbScreen)
httpCloseSock(rfbScreen);
return;
}
- // proxy connection
+ /* proxy connection */
rfbLog("httpd: client asked for CONNECT\n");
WriteExact(&cl,PROXY_OK_STR,strlen(PROXY_OK_STR));
rfbNewClientConnection(rfbScreen,rfbScreen->httpSock);
@@ -274,7 +274,7 @@ httpProcessInput(rfbScreenInfoPtr rfbScreen)
return;
}
if (!strncmp(buf, "GET ",4) && !strncmp(strchr(buf,'/'),"/proxied.connection HTTP/1.", 27)) {
- // proxy connection
+ /* proxy connection */
rfbLog("httpd: client asked for /proxied.connection\n");
WriteExact(&cl,PROXY_OK_STR,strlen(PROXY_OK_STR));
rfbNewClientConnection(rfbScreen,rfbScreen->httpSock);