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
200 B
C

#include <unistd.h>
#include "socket.h"
#include "ndelay.h"
int socket_sctp4(void) {
int s=socket_sctp4b();
if (s==-1) return -1;
if (ndelay_on(s) == -1) { close(s); return -1; }
return s;
}