2006-05-01 00:53:25 +02: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 17:51:35 +02:00
|
|
|
int inet_aton(const char *cp, struct in_addr *ia);
|
|
|
|
|
2006-05-01 00:53:25 +02:00
|
|
|
#else
|
|
|
|
|
2010-09-22 18:51:33 +02:00
|
|
|
#include <sys/types.h>
|
2006-05-01 00:53:25 +02:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/tcp.h>
|
2008-09-15 17:51:35 +02:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
2006-12-21 20:46:43 +01:00
|
|
|
#include <sys/un.h>
|
2006-05-01 00:53:25 +02:00
|
|
|
|
|
|
|
#define socket_error() errno
|
|
|
|
#define closesocket(s) close(s)
|
|
|
|
|
|
|
|
#endif /* !_WIN32 */
|
|
|
|
|
2009-09-10 10:58:37 +02:00
|
|
|
#include "qemu-option.h"
|
2012-05-10 18:28:16 +02:00
|
|
|
#include "error.h"
|
|
|
|
#include "qerror.h"
|
2009-09-10 10:58:37 +02:00
|
|
|
|
2008-11-11 21:46:40 +01: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);
|
2011-10-05 09:17:32 +02:00
|
|
|
void socket_set_block(int fd);
|
2006-05-01 00:53:25 +02:00
|
|
|
void socket_set_nonblock(int fd);
|
2008-11-11 21:46:40 +01:00
|
|
|
int send_all(int fd, const void *buf, int len1);
|
|
|
|
|
|
|
|
/* New, ipv6-ready socket helper functions, see qemu-sockets.c */
|
2012-05-10 18:28:26 +02:00
|
|
|
int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp);
|
2008-11-11 21:46:40 +01:00
|
|
|
int inet_listen(const char *str, char *ostr, int olen,
|
2012-05-10 18:28:26 +02:00
|
|
|
int socktype, int port_offset, Error **errp);
|
2012-05-10 18:28:16 +02:00
|
|
|
int inet_connect_opts(QemuOpts *opts, Error **errp);
|
|
|
|
int inet_connect(const char *str, bool block, Error **errp);
|
2009-09-10 10:58:51 +02:00
|
|
|
int inet_dgram_opts(QemuOpts *opts);
|
2010-01-20 14:42:38 +01:00
|
|
|
const char *inet_strfamily(int family);
|
2008-11-11 21:46:40 +01:00
|
|
|
|
2009-09-10 10:58:38 +02:00
|
|
|
int unix_listen_opts(QemuOpts *opts);
|
2008-11-11 21:46:40 +01:00
|
|
|
int unix_listen(const char *path, char *ostr, int olen);
|
2009-09-10 10:58:37 +02:00
|
|
|
int unix_connect_opts(QemuOpts *opts);
|
2008-11-11 21:46:40 +01:00
|
|
|
int unix_connect(const char *path);
|
|
|
|
|
|
|
|
/* Old, ipv4 only bits. Don't use for new code. */
|
2008-10-13 05:12:02 +02: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-05-01 00:53:25 +02:00
|
|
|
|
|
|
|
#endif /* QEMU_SOCKET_H */
|