#include <Macros.h>
#include "types.h"
Go to the source code of this file.
|
| C int | connect (int sockfd, struct sockaddr *addr, socklen_t addrlen) |
| | Connect a socket to an address/port. More...
|
| |
| C int | recvfrom (int sockfd, void *buf, size_t len, int flags, struct sockaddr *addr, socklen_t addrlen) |
| | Receive a single datagram from a socket. More...
|
| |
| C int | sendto (int sockfd, const void *buf, size_t len, int flags, const struct sockaddr *addr, socklen_t addrlen) |
| | Send a single datagram to a remote host. More...
|
| |
| C int | sendmsg (int sockfd, const struct msghdr *msg, int flags) |
| | Send multiple datagrams to a remote host. More...
|
| |