X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/record-dvb/blobdiff_plain/90d8d87bb07bd2e77fc19df4efe41c23464cbbf0..89ec024f927084cf53df08c246406a2551b3ad5c:/sap.c diff --git a/sap.c b/sap.c index 684c509..49dfcc8 100644 --- a/sap.c +++ b/sap.c @@ -8,6 +8,8 @@ #include #include #include +#include +#include #include "mcast.h" #include "sap.h" @@ -41,6 +43,25 @@ char *get_url_from_sap(char *service) unsigned char auth_len; unsigned short msgid; unsigned char *payload, *pos, *host = NULL, *proto = NULL, *port = NULL, *sname = NULL; + fd_set rfds; + struct timeval tv; + int retval; + + FD_ZERO(&rfds); + FD_SET(fd, &rfds); + + tv.tv_sec = 0; + tv.tv_usec = 1000; + + if ((retval = select(fd+1, &rfds, NULL, NULL, &tv)) == -1) { + perror("select"); + return NULL; + } + + if (!retval) { + gettimeofday(&curr, NULL); + continue; + } if ((recvd = recv(fd, buffer, BUFFSIZE, 0)) < 1) { perror("recv");