2006-04-30 22:53:25 +00:00
|
|
|
/* headers to use the BSD sockets */
|
|
|
|
#ifndef QEMU_SOCKET_H
|
|
|
|
#define QEMU_SOCKET_H
|
|
|
|
|
|
|
|
#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);
|
2008-11-11 20:46:40 +00:00
|
|
|
int inet_listen(const char *str, char *ostr, int olen,
|
2012-05-11 00:28:26 +08:00
|
|
|
int socktype, int port_offset, 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
|
|
|
int inet_nonblocking_connect(const char *str,
|
|
|
|
NonBlockingConnectHandler *callback,
|
|
|
|
void *opaque, Error **errp);
|
|
|
|
|
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);
|
2012-10-03 13:37:46 +02:00
|
|
|
int unix_nonblocking_connect(const char *str,
|
|
|
|
NonBlockingConnectHandler *callback,
|
|
|
|
void *opaque, 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);
|
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);
|
|
|
|
|
2015-08-14 18:18:41 +01:00
|
|
|
|
|
|
|
void qapi_copy_SocketAddress(SocketAddress **p_dest,
|
|
|
|
SocketAddress *src);
|
|
|
|
|
2006-04-30 22:53:25 +00:00
|
|
|
#endif /* QEMU_SOCKET_H */
|