2001-10-15 14:34:02 +00:00
|
|
|
#include <sys/types.h>
|
2001-02-05 17:57:02 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include "socket.h"
|
|
|
|
|
|
|
|
int socket_bind4_reuse(int s,const char *ip,uint16 port) {
|
|
|
|
int one=1;
|
|
|
|
setsockopt(s,SOL_SOCKET,SO_REUSEADDR,&one,sizeof one);
|
|
|
|
return socket_bind4(s,ip,port);
|
|
|
|
}
|