1socket_udp4(3)             Library Functions Manual             socket_udp4(3)
2
3
4

NAME

6       socket_udp4 - create a non-blocking UDP/IP datagram socket
7

SYNTAX

9       #include <socket.h>
10
11       int socket_udp4();
12

DESCRIPTION

14       socket_udp4 creates a non-blocking UDP/IP datagram socket and returns a
15       file descriptor pointing to that  socket.   If  something  goes  wrong,
16       socket_udp4 returns -1, setting errno appropriately, without allocating
17       any resources.
18
19

EXAMPLE

21         #include <socket.h>
22
23         int s;
24         char ip[4];
25         uint16 p;
26
27         s = socket_udp4();
28         socket_bind4(s,ip,p);
29         socket_connect4(s,ip,p);
30
31

SEE ALSO

33       socket_bind4(3), socket_bind6(3)
34
35
36
37                                                                socket_udp4(3)
Impressum