2006-04-30 22:53:25 +00:00
|
|
|
/* headers to use the BSD sockets */
|
2016-06-29 10:12:57 +02:00
|
|
|
|
|
|
|
#ifndef QEMU_SOCKETS_H
|
|
|
|
#define QEMU_SOCKETS_H
|
2006-04-30 22:53:25 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
2008-09-15 15:51:35 +00:00
|
|
|
int inet_aton(const char *cp, struct in_addr *ia);
|
|
|
|
|
2006-04-30 22:53:25 +00:00
|
|
|
#endif /* !_WIN32 */
|
|
|
|
|
2014-06-18 08:43:30 +02:00
|
|
|
#include "qapi-types.h"
|
2009-09-10 10:58:37 +02:00
|
|
|
|
2008-11-11 20:46:40 +00:00
|
|
|
/* misc helpers */
|
2009-12-02 12:24:42 +01:00
|
|
|
int qemu_socket(int domain, int type, int protocol);
|
|
|
|
int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen);
|
2011-09-21 12:36:48 +02:00
|
|
|
int socket_set_cork(int fd, int v);
|
2013-02-22 12:39:50 +09:00
|
|
|
int socket_set_nodelay(int fd);
|
2013-03-27 10:10:43 +01:00
|
|
|
void qemu_set_block(int fd);
|
|
|
|
void qemu_set_nonblock(int fd);
|
2013-10-02 12:23:12 +02:00
|
|
|
int socket_set_fast_reuse(int fd);
|
2008-11-11 20:46:40 +00:00
|
|
|
|
2015-01-08 11:11:30 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
/* Windows has different names for the same constants with the same values */
|
|
|
|
#define SHUT_RD 0
|
|
|
|
#define SHUT_WR 1
|
|
|
|
#define SHUT_RDWR 2
|
|
|
|
#endif
|
|
|
|
|
2012-09-24 13:11:09 +02:00
|
|
|
/* callback function for nonblocking connect
|
|
|
|
* valid fd on success, negative error code on failure
|
|
|
|
*/
|
2015-12-18 16:35:27 +01:00
|
|
|
typedef void NonBlockingConnectHandler(int fd, Error *err, void *opaque);
|
2012-09-24 13:11:09 +02:00
|
|
|
|
2013-03-15 11:55:29 +01:00
|
|
|
InetSocketAddress *inet_parse(const char *str, Error **errp);
|
2012-09-24 13:11:08 +02:00
|
|
|
int inet_connect(const char *str, Error **errp);
|
2012-09-24 13:11:09 +02:00
|
|
|
|
2014-06-18 08:43:30 +02:00
|
|
|
NetworkAddressFamily inet_netfamily(int family);
|
2008-11-11 20:46:40 +00:00
|
|
|
|
2012-10-02 09:35:32 +02:00
|
|
|
int unix_listen(const char *path, char *ostr, int olen, Error **errp);
|
|
|
|
int unix_connect(const char *path, Error **errp);
|
2008-11-11 20:46:40 +00:00
|
|
|
|
2012-10-23 21:31:53 +02:00
|
|
|
SocketAddress *socket_parse(const char *str, Error **errp);
|
|
|
|
int socket_connect(SocketAddress *addr, Error **errp,
|
|
|
|
NonBlockingConnectHandler *callback, void *opaque);
|
|
|
|
int socket_listen(SocketAddress *addr, Error **errp);
|
2016-06-16 21:28:52 +02:00
|
|
|
void socket_listen_cleanup(int fd, Error **errp);
|
2013-02-27 14:10:47 +01:00
|
|
|
int socket_dgram(SocketAddress *remote, SocketAddress *local, Error **errp);
|
2012-10-23 21:31:53 +02:00
|
|
|
|
2008-11-11 20:46:40 +00:00
|
|
|
/* Old, ipv4 only bits. Don't use for new code. */
|
2008-10-13 03:12:02 +00:00
|
|
|
int parse_host_port(struct sockaddr_in *saddr, const char *str);
|
2010-04-01 19:57:08 +02:00
|
|
|
int socket_init(void);
|
2006-04-30 22:53:25 +00:00
|
|
|
|
2015-02-27 16:19:33 +00:00
|
|
|
/**
|
|
|
|
* socket_sockaddr_to_address:
|
|
|
|
* @sa: socket address struct
|
|
|
|
* @salen: size of @sa struct
|
|
|
|
* @errp: pointer to uninitialized error object
|
|
|
|
*
|
|
|
|
* Get the string representation of the socket
|
|
|
|
* address. A pointer to the allocated address information
|
|
|
|
* struct will be returned, which the caller is required to
|
|
|
|
* release with a call qapi_free_SocketAddress when no
|
|
|
|
* longer required.
|
|
|
|
*
|
|
|
|
* Returns: the socket address struct, or NULL on error
|
|
|
|
*/
|
|
|
|
SocketAddress *
|
|
|
|
socket_sockaddr_to_address(struct sockaddr_storage *sa,
|
|
|
|
socklen_t salen,
|
|
|
|
Error **errp);
|
|
|
|
|
2015-05-01 17:36:20 +01:00
|
|
|
/**
|
|
|
|
* socket_local_address:
|
|
|
|
* @fd: the socket file handle
|
|
|
|
* @errp: pointer to uninitialized error object
|
|
|
|
*
|
|
|
|
* Get the string representation of the local socket
|
|
|
|
* address. A pointer to the allocated address information
|
|
|
|
* struct will be returned, which the caller is required to
|
|
|
|
* release with a call qapi_free_SocketAddress when no
|
|
|
|
* longer required.
|
|
|
|
*
|
|
|
|
* Returns: the socket address struct, or NULL on error
|
|
|
|
*/
|
|
|
|
SocketAddress *socket_local_address(int fd, Error **errp);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* socket_remote_address:
|
|
|
|
* @fd: the socket file handle
|
|
|
|
* @errp: pointer to uninitialized error object
|
|
|
|
*
|
|
|
|
* Get the string representation of the remote socket
|
|
|
|
* address. A pointer to the allocated address information
|
|
|
|
* struct will be returned, which the caller is required to
|
|
|
|
* release with a call qapi_free_SocketAddress when no
|
|
|
|
* longer required.
|
|
|
|
*
|
|
|
|
* Returns: the socket address struct, or NULL on error
|
|
|
|
*/
|
|
|
|
SocketAddress *socket_remote_address(int fd, Error **errp);
|
|
|
|
|
2016-06-18 13:24:02 +05:30
|
|
|
/**
|
|
|
|
* socket_address_to_string:
|
|
|
|
* @addr: the socket address struct
|
|
|
|
* @errp: pointer to uninitialized error object
|
|
|
|
*
|
|
|
|
* Get the string representation of the socket
|
|
|
|
* address. A pointer to the char array containing
|
|
|
|
* string format will be returned, the caller is
|
|
|
|
* required to release the returned value when no
|
|
|
|
* longer required with g_free.
|
|
|
|
*
|
|
|
|
* Returns: the socket address in string format, or NULL on error
|
|
|
|
*/
|
|
|
|
char *socket_address_to_string(struct SocketAddress *addr, Error **errp);
|
2016-06-29 10:12:57 +02:00
|
|
|
|
|
|
|
#endif /* QEMU_SOCKETS_H */
|