2006-05-01 06:53:25 +08:00
|
|
|
/* headers to use the BSD sockets */
|
|
|
|
#ifndef QEMU_SOCKET_H
|
|
|
|
#define QEMU_SOCKET_H
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
|
|
|
|
#define socket_error() WSAGetLastError()
|
|
|
|
|
2008-09-15 23:51:35 +08:00
|
|
|
int inet_aton(const char *cp, struct in_addr *ia);
|
|
|
|
|
2006-05-01 06:53:25 +08:00
|
|
|
#else
|
|
|
|
|
2010-09-23 00:51:33 +08:00
|
|
|
#include <sys/types.h>
|
2006-05-01 06:53:25 +08:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/tcp.h>
|
2008-09-15 23:51:35 +08:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
2006-12-22 03:46:43 +08:00
|
|
|
#include <sys/un.h>
|
2006-05-01 06:53:25 +08:00
|
|
|
|
|
|
|
#define socket_error() errno
|
|
|
|
#define closesocket(s) close(s)
|
|
|
|
|
|
|
|
#endif /* !_WIN32 */
|
|
|
|
|
2009-09-10 16:58:37 +08:00
|
|
|
#include "qemu-option.h"
|
2012-05-11 00:28:16 +08:00
|
|
|
#include "error.h"
|
|
|
|
#include "qerror.h"
|
2009-09-10 16:58:37 +08:00
|
|
|
|
2008-11-12 04:46:40 +08:00
|
|
|
/* misc helpers */
|
2009-12-02 19:24:42 +08:00
|
|
|
int qemu_socket(int domain, int type, int protocol);
|
|
|
|
int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen);
|
2011-09-21 18:36:48 +08:00
|
|
|
int socket_set_cork(int fd, int v);
|
2011-10-05 15:17:32 +08:00
|
|
|
void socket_set_block(int fd);
|
2006-05-01 06:53:25 +08:00
|
|
|
void socket_set_nonblock(int fd);
|
2008-11-12 04:46:40 +08:00
|
|
|
int send_all(int fd, const void *buf, int len1);
|
|
|
|
|
2012-09-24 19:11:09 +08:00
|
|
|
/* callback function for nonblocking connect
|
|
|
|
* valid fd on success, negative error code on failure
|
|
|
|
*/
|
|
|
|
typedef void NonBlockingConnectHandler(int fd, void *opaque);
|
|
|
|
|
2012-05-11 00:28:26 +08:00
|
|
|
int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp);
|
2008-11-12 04:46:40 +08: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 19:11:09 +08:00
|
|
|
int inet_connect_opts(QemuOpts *opts, Error **errp,
|
|
|
|
NonBlockingConnectHandler *callback, void *opaque);
|
2012-09-24 19:11:08 +08:00
|
|
|
int inet_connect(const char *str, Error **errp);
|
2012-09-24 19:11:09 +08:00
|
|
|
int inet_nonblocking_connect(const char *str,
|
|
|
|
NonBlockingConnectHandler *callback,
|
|
|
|
void *opaque, Error **errp);
|
|
|
|
|
2012-10-02 15:35:32 +08:00
|
|
|
int inet_dgram_opts(QemuOpts *opts, Error **errp);
|
2010-01-20 21:42:38 +08:00
|
|
|
const char *inet_strfamily(int family);
|
2008-11-12 04:46:40 +08:00
|
|
|
|
2012-10-02 15:35:32 +08:00
|
|
|
int unix_listen_opts(QemuOpts *opts, Error **errp);
|
|
|
|
int unix_listen(const char *path, char *ostr, int olen, Error **errp);
|
2012-10-03 19:37:46 +08:00
|
|
|
int unix_connect_opts(QemuOpts *opts, Error **errp,
|
|
|
|
NonBlockingConnectHandler *callback, void *opaque);
|
2012-10-02 15:35:32 +08:00
|
|
|
int unix_connect(const char *path, Error **errp);
|
2012-10-03 19:37:46 +08:00
|
|
|
int unix_nonblocking_connect(const char *str,
|
|
|
|
NonBlockingConnectHandler *callback,
|
|
|
|
void *opaque, Error **errp);
|
2008-11-12 04:46:40 +08:00
|
|
|
|
2012-10-24 03:31:53 +08: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);
|
|
|
|
|
2008-11-12 04:46:40 +08:00
|
|
|
/* Old, ipv4 only bits. Don't use for new code. */
|
2008-10-13 11:12:02 +08:00
|
|
|
int parse_host_port(struct sockaddr_in *saddr, const char *str);
|
2010-04-02 01:57:08 +08:00
|
|
|
int socket_init(void);
|
2006-05-01 06:53:25 +08:00
|
|
|
|
|
|
|
#endif /* QEMU_SOCKET_H */
|