You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
652 B
C

#include "socket.h"
#include <sys/types.h>
#include <string.h>
#ifndef __MINGW32__
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#endif
#include "windoze.h"
#include "socket.h"
#include <string.h>
void socket_deferaccept(int s,enum defermode mode) {
#ifdef TCP_DEFER_ACCEPT
int one=1;
(void)mode;
setsockopt(s,IPPROTO_TCP,TCP_DEFER_ACCEPT,&one,sizeof(one));
#elif defined(SO_ACCEPTFILTER)
struct accept_filter_arg afa;
memset(&afa,0,sizeof(afa));
strcpy(afa.af_name,mode==HTTPIN?"httpreader":"dataready");
setsockopt(s, SOL_SOCKET, SO_ACCEPTFILTER, &afa, sizeof(afa));
#else
(void)s;
(void)mode;
#endif
}