1 /* headers to use the BSD sockets */
8 int inet_aton(const char *cp, struct in_addr *ia);
12 #include "qapi/qapi-types-sockets.h"
15 bool fd_is_socket(int fd);
16 int qemu_socket(int domain, int type, int protocol);
17 int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen);
18 int socket_set_cork(int fd, int v);
19 int socket_set_nodelay(int fd);
20 void qemu_set_block(int fd);
21 int qemu_try_set_nonblock(int fd);
22 void qemu_set_nonblock(int fd);
23 int socket_set_fast_reuse(int fd);
26 /* Windows has different names for the same constants with the same values */
32 int inet_ai_family_from_address(InetSocketAddress *addr,
34 int inet_parse(InetSocketAddress *addr, const char *str, Error **errp);
35 int inet_connect(const char *str, Error **errp);
36 int inet_connect_saddr(InetSocketAddress *saddr, Error **errp);
38 NetworkAddressFamily inet_netfamily(int family);
40 int unix_listen(const char *path, Error **errp);
41 int unix_connect(const char *path, Error **errp);
43 SocketAddress *socket_parse(const char *str, Error **errp);
44 int socket_connect(SocketAddress *addr, Error **errp);
45 int socket_listen(SocketAddress *addr, int num, Error **errp);
46 void socket_listen_cleanup(int fd, Error **errp);
47 int socket_dgram(SocketAddress *remote, SocketAddress *local, Error **errp);
49 /* Old, ipv4 only bits. Don't use for new code. */
50 int parse_host_port(struct sockaddr_in *saddr, const char *str,
52 int socket_init(void);
55 * socket_sockaddr_to_address:
56 * @sa: socket address struct
57 * @salen: size of @sa struct
58 * @errp: pointer to uninitialized error object
60 * Get the string representation of the socket
61 * address. A pointer to the allocated address information
62 * struct will be returned, which the caller is required to
63 * release with a call qapi_free_SocketAddress() when no
66 * Returns: the socket address struct, or NULL on error
69 socket_sockaddr_to_address(struct sockaddr_storage *sa,
74 * socket_local_address:
75 * @fd: the socket file handle
76 * @errp: pointer to uninitialized error object
78 * Get the string representation of the local socket
79 * address. A pointer to the allocated address information
80 * struct will be returned, which the caller is required to
81 * release with a call qapi_free_SocketAddress() when no
84 * Returns: the socket address struct, or NULL on error
86 SocketAddress *socket_local_address(int fd, Error **errp);
89 * socket_remote_address:
90 * @fd: the socket file handle
91 * @errp: pointer to uninitialized error object
93 * Get the string representation of the remote socket
94 * address. A pointer to the allocated address information
95 * struct will be returned, which the caller is required to
96 * release with a call qapi_free_SocketAddress() when no
99 * Returns: the socket address struct, or NULL on error
101 SocketAddress *socket_remote_address(int fd, Error **errp);
104 * socket_address_flatten:
105 * @addr: the socket address to flatten
107 * Convert SocketAddressLegacy to SocketAddress. Caller is responsible
108 * for freeing with qapi_free_SocketAddress().
110 * Returns: the argument converted to SocketAddress.
112 SocketAddress *socket_address_flatten(SocketAddressLegacy *addr);
114 #endif /* QEMU_SOCKETS_H */