1socket_sctp6(3) Library Functions Manual socket_sctp6(3)
2
3
4
6 socket_sctp6 - create a non-blocking IPv6 SCTP/IP stream socket
7
9 #include <socket.h>
10
11 int socket_sctp6();
12
14 socket_sctp6 creates a non-blocking IPv6 SCTP/IP stream socket and
15 returns a file descriptor pointing to that socket. If something goes
16 wrong, socket_sctp6 returns -1, setting errno appropriately, without
17 allocating any resources.
18
19
21 #include <socket.h>
22
23 int s;
24 char ip[16];
25 uint16 p;
26
27 s = socket_sctp6();
28 socket_bind6(s,ip,p);
29 socket_connect6(s,ip,p,0);
30
31
33 socket_bind4(3), socket_bind6(3)
34
35
36
37 socket_sctp6(3)