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.
11 lines
219 B
C
11 lines
219 B
C
24 years ago
|
#include <sys/socket.h>
|
||
|
#include "socket.h"
|
||
|
|
||
|
void socket_tryreservein(int s,int size)
|
||
|
{
|
||
|
while (size >= 1024) {
|
||
|
if (setsockopt(s,SOL_SOCKET,SO_RCVBUF,&size,sizeof size) == 0) return;
|
||
|
size -= (size >> 5);
|
||
|
}
|
||
|
}
|