Commit f52cfa65 authored by dscho's avatar dscho

add handleEventsEagerly flag (Thanks, Donald)

parent 79310af7
...@@ -28,7 +28,7 @@ email!): Akira Hatakeyama, Karl J. Runge, Justin "Zippy" Dearing, ...@@ -28,7 +28,7 @@ email!): Akira Hatakeyama, Karl J. Runge, Justin "Zippy" Dearing,
Oliver Mihatsch, Greg Sternberg, Werner Hofer, Giampiero Giancipoli, Oliver Mihatsch, Greg Sternberg, Werner Hofer, Giampiero Giancipoli,
Glenn Mabutt, Paul Kreiner, Erik Kunze, Mike Frysinger, Martin Waitz, Glenn Mabutt, Paul Kreiner, Erik Kunze, Mike Frysinger, Martin Waitz,
Mark McLoughlin, Paul Fox, Juan Jose Costello, Andre Leiadella, Mark McLoughlin, Paul Fox, Juan Jose Costello, Andre Leiadella,
Alberto Lusiani, Malvina Mazin, Dave Stuart. Alberto Lusiani, Malvina Mazin, Dave Stuart, Rohit Kumar, and Donald Dugger.
Probably I forgot quite a few people sending a patch here and there, which Probably I forgot quite a few people sending a patch here and there, which
really made a difference. Without those, some obscure bugs still would really made a difference. Without those, some obscure bugs still would
......
2006-02-28 Donald Dugger <donald.d.dugger@intel.com>
* rfb.h, sockets.c, main.c: add a flag to handle all pending
input events instead of one at a time.
2006-02-24 Karl Runge <runge@karlrunge.com> 2006-02-24 Karl Runge <runge@karlrunge.com>
* x11vnc: -unixpw and -stunnel options. Add clipboard input * x11vnc: -unixpw and -stunnel options. Add clipboard input
to per-client input controls. to per-client input controls.
......
...@@ -796,6 +796,8 @@ rfbScreenInfoPtr rfbGetScreen(int* argc,char** argv, ...@@ -796,6 +796,8 @@ rfbScreenInfoPtr rfbGetScreen(int* argc,char** argv,
screen->deferUpdateTime=5; screen->deferUpdateTime=5;
screen->maxRectsPerUpdate=50; screen->maxRectsPerUpdate=50;
screen->handleEventsEagerly = FALSE;
if(!rfbProcessArguments(screen,argc,argv)) { if(!rfbProcessArguments(screen,argc,argv)) {
free(screen); free(screen);
return NULL; return NULL;
......
...@@ -213,7 +213,7 @@ void rfbShutdownSockets(rfbScreenInfoPtr rfbScreen) ...@@ -213,7 +213,7 @@ void rfbShutdownSockets(rfbScreenInfoPtr rfbScreen)
* rfbProcessClientMessage, etc). * rfbProcessClientMessage, etc).
*/ */
void int
rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
{ {
int nfds; int nfds;
...@@ -232,12 +232,13 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) ...@@ -232,12 +232,13 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
rfbScreen->inetdInitDone = TRUE; rfbScreen->inetdInitDone = TRUE;
} }
do {
memcpy((char *)&fds, (char *)&(rfbScreen->allFds), sizeof(fd_set)); memcpy((char *)&fds, (char *)&(rfbScreen->allFds), sizeof(fd_set));
tv.tv_sec = 0; tv.tv_sec = 0;
tv.tv_usec = usec; tv.tv_usec = usec;
nfds = select(rfbScreen->maxFd + 1, &fds, NULL, NULL /* &fds */, &tv); nfds = select(rfbScreen->maxFd + 1, &fds, NULL, NULL /* &fds */, &tv);
if (nfds == 0) { if (nfds == 0) {
return; return 0;
} }
if (nfds < 0) { if (nfds < 0) {
#ifdef WIN32 #ifdef WIN32
...@@ -245,7 +246,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) ...@@ -245,7 +246,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
#endif #endif
if (errno != EINTR) if (errno != EINTR)
rfbLogPerror("rfbCheckFds: select"); rfbLogPerror("rfbCheckFds: select");
return; return 0;
} }
if (rfbScreen->listenSock != -1 && FD_ISSET(rfbScreen->listenSock, &fds)) { if (rfbScreen->listenSock != -1 && FD_ISSET(rfbScreen->listenSock, &fds)) {
...@@ -253,14 +254,14 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) ...@@ -253,14 +254,14 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
if ((sock = accept(rfbScreen->listenSock, if ((sock = accept(rfbScreen->listenSock,
(struct sockaddr *)&addr, &addrlen)) < 0) { (struct sockaddr *)&addr, &addrlen)) < 0) {
rfbLogPerror("rfbCheckFds: accept"); rfbLogPerror("rfbCheckFds: accept");
return; return 0;
} }
#ifndef WIN32 #ifndef WIN32
if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0) { if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0) {
rfbLogPerror("rfbCheckFds: fcntl"); rfbLogPerror("rfbCheckFds: fcntl");
closesocket(sock); closesocket(sock);
return; return 0;
} }
#endif #endif
...@@ -268,7 +269,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) ...@@ -268,7 +269,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
(char *)&one, sizeof(one)) < 0) { (char *)&one, sizeof(one)) < 0) {
rfbLogPerror("rfbCheckFds: setsockopt"); rfbLogPerror("rfbCheckFds: setsockopt");
closesocket(sock); closesocket(sock);
return; return 0;
} }
#ifdef USE_LIBWRAP #ifdef USE_LIBWRAP
...@@ -277,7 +278,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) ...@@ -277,7 +278,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
rfbLog("Rejected connection from client %s\n", rfbLog("Rejected connection from client %s\n",
inet_ntoa(addr.sin_addr)); inet_ntoa(addr.sin_addr));
closesocket(sock); closesocket(sock);
return; return 0;
} }
#endif #endif
...@@ -287,7 +288,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) ...@@ -287,7 +288,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
FD_CLR(rfbScreen->listenSock, &fds); FD_CLR(rfbScreen->listenSock, &fds);
if (--nfds == 0) if (--nfds == 0)
return; return 0;
} }
if ((rfbScreen->udpSock != -1) && FD_ISSET(rfbScreen->udpSock, &fds)) { if ((rfbScreen->udpSock != -1) && FD_ISSET(rfbScreen->udpSock, &fds)) {
...@@ -312,7 +313,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) ...@@ -312,7 +313,7 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
(struct sockaddr *)&addr, addrlen) < 0) { (struct sockaddr *)&addr, addrlen) < 0) {
rfbLogPerror("rfbCheckFds: UDP: connect"); rfbLogPerror("rfbCheckFds: UDP: connect");
rfbDisconnectUDPSock(rfbScreen); rfbDisconnectUDPSock(rfbScreen);
return; return 0;
} }
rfbNewUDPConnection(rfbScreen,rfbScreen->udpSock); rfbNewUDPConnection(rfbScreen,rfbScreen->udpSock);
...@@ -323,17 +324,20 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) ...@@ -323,17 +324,20 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec)
FD_CLR(rfbScreen->udpSock, &fds); FD_CLR(rfbScreen->udpSock, &fds);
if (--nfds == 0) if (--nfds == 0)
return; return 0;
} }
i = rfbGetClientIterator(rfbScreen); i = rfbGetClientIterator(rfbScreen);
while((cl = rfbClientIteratorNext(i))) { while((cl = rfbClientIteratorNext(i))) {
if (cl->onHold) if (cl->onHold)
continue; continue;
if (FD_ISSET(cl->sock, &fds) && FD_ISSET(cl->sock, &(rfbScreen->allFds))) if (FD_ISSET(cl->sock, &fds) &&
FD_ISSET(cl->sock, &(rfbScreen->allFds)))
rfbProcessClientMessage(cl); rfbProcessClientMessage(cl);
} }
rfbReleaseClientIterator(i); rfbReleaseClientIterator(i);
} while(rfbScreen->handleEventsEagerly);
return 1;
} }
......
...@@ -310,6 +310,9 @@ typedef struct _rfbScreenInfo ...@@ -310,6 +310,9 @@ typedef struct _rfbScreenInfo
in_addr_t listenInterface; in_addr_t listenInterface;
int deferPtrUpdateTime; int deferPtrUpdateTime;
/* handle as many input events as possible (default off) */
rfbBool handleEventsEagerly;
} rfbScreenInfo, *rfbScreenInfoPtr; } rfbScreenInfo, *rfbScreenInfoPtr;
...@@ -563,7 +566,7 @@ extern void rfbCloseClient(rfbClientPtr cl); ...@@ -563,7 +566,7 @@ extern void rfbCloseClient(rfbClientPtr cl);
extern int rfbReadExact(rfbClientPtr cl, char *buf, int len); extern int rfbReadExact(rfbClientPtr cl, char *buf, int len);
extern int rfbReadExactTimeout(rfbClientPtr cl, char *buf, int len,int timeout); extern int rfbReadExactTimeout(rfbClientPtr cl, char *buf, int len,int timeout);
extern int rfbWriteExact(rfbClientPtr cl, const char *buf, int len); extern int rfbWriteExact(rfbClientPtr cl, const char *buf, int len);
extern void rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec); extern int rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec);
extern int rfbConnect(rfbScreenInfoPtr rfbScreen, char* host, int port); extern int rfbConnect(rfbScreenInfoPtr rfbScreen, char* host, int port);
extern int rfbConnectToTcpAddr(char* host, int port); extern int rfbConnectToTcpAddr(char* host, int port);
extern int rfbListenOnTCPPort(int port, in_addr_t iface); extern int rfbListenOnTCPPort(int port, in_addr_t iface);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment