10 lines
190 B
C
10 lines
190 B
C
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <netinet/in.h>
|
||
|
|
||
|
int main(void) {
|
||
|
setsockopt(0, IPPROTO_IP, IP_BIND_ADDRESS_NO_PORT, NULL, 0);
|
||
|
return 0;
|
||
|
}
|