summaryrefslogtreecommitdiffstats
path: root/httpd.c
diff options
context:
space:
mode:
authordscho <dscho>2002-02-18 06:43:54 +0000
committerdscho <dscho>2002-02-18 06:43:54 +0000
commit45a4b4a2235adecc925182b27959db62b5954a26 (patch)
treede00aee4fd77b81f768d00416c9eda47d21e22b3 /httpd.c
parentfbf2c977fe4c70fa2e551ecc0264c4b8184386f2 (diff)
downloadlibtdevnc-45a4b4a2235adecc925182b27959db62b5954a26.tar.gz
libtdevnc-45a4b4a2235adecc925182b27959db62b5954a26.zip
changes from Tim Jansen: threading issues, new client can be rejected, and more
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd.c b/httpd.c
index fd00ec2..37be4f3 100644
--- a/httpd.c
+++ b/httpd.c
@@ -92,7 +92,7 @@ httpInitSockets(rfbScreenInfoPtr rfbScreen)
exit(1);
}
- //AddEnabledDevice(httpListenSock);
+ /*AddEnabledDevice(httpListenSock);*/
}
@@ -151,7 +151,7 @@ httpCheckFds(rfbScreenInfoPtr rfbScreen)
return;
}
- //AddEnabledDevice(httpSock);
+ /*AddEnabledDevice(httpSock);*/
}
}
@@ -161,7 +161,7 @@ httpCloseSock(rfbScreenInfoPtr rfbScreen)
{
fclose(rfbScreen->httpFP);
rfbScreen->httpFP = NULL;
- //RemoveEnabledDevice(httpSock);
+ /*RemoveEnabledDevice(httpSock);*/
rfbScreen->httpSock = -1;
}