1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/* Stimeoutwait.c: this file contains code which allows one to wait until data
* is present at the Socket (this will block)
*
* Returns: number of bytes of data awaiting perusal
* or -1 if unable to "select" the socket
* or -2 if timeout occurs
*/
#include <stdio.h>
#define SSLNEEDTIME
#include "sockets.h"
/* ---------------------------------------------------------------------
* Source Code:
*/
#ifdef __PROTOTYPE__
int Stimeoutwait(Socket *skt,long seconds,long useconds)
#else
int Stimeoutwait(skt,seconds,useconds)
Socket *skt;
long seconds;
long useconds;
#endif
{
short result;
int ret;
fd_set emask;
fd_set rmask;
fd_set wmask;
struct timeval timeout;
static char buf[PM_BIGBUF];
/* sanity check */
if(!skt) {
return -1;
}
FD_ZERO(&rmask);
FD_SET(skt->skt,&rmask);
FD_ZERO(&wmask);
FD_ZERO(&emask);
/* test if something is available for reading on the socket. This form
* will block (sleep) until something arrives
*/
timeout.tv_sec = seconds;
timeout.tv_usec= useconds;
#ifdef SSLNOPEEK
result= select(skt->skt+1,
rmask.fds_bits,wmask.fds_bits,emask.fds_bits, &timeout);
#else /* #ifdef SSLNOPEEK ... #else ... #endif */
result= select(skt->skt+1, &rmask,&wmask,&emask, &timeout);
#endif /* #ifdef SSLNOPEEK ... #else ... #endif */
/* socket error */
if(result < 0) {
return -1;
}
/* timed out */
else if(result == 0) {
return -2;
}
/* server sockets return the select result */
if(skt->type == PM_SERVER) {
return result;
}
#ifdef SSLNOPEEK
return 1;
#else /* #ifdef SSLNOPEEK ... #else ... #endif */
if(FD_ISSET(skt->skt,&rmask)) {
ret= recv(skt->skt,buf,PM_BIGBUF-1,MSG_PEEK);
if(result == 1 && ret == 0) ret= EOF;
return ret;
}
/* socket is empty */
return 0;
#endif /* #ifdef SSLNOPEEK ... #else ... #endif */
}
/* ---------------------------------------------------------------------
* vim: ts=4
*/
|