aboutsummaryrefslogtreecommitdiffstats
path: root/qemu_socket.h
blob: ada6e40c376aac2269c906ee47a648cc1ebdbf91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* headers to use the BSD sockets */
#ifndef QEMU__SOCKET_H
#define QEMU__SOCKET_H

#include "qemu-option.h"

#include "sockets.h"
#define  socket_error()  errno
#define  closesocket     socket_close

/* New, ipv6-ready socket helper functions, see qemu-sockets.c */
int inet_listen_opts(QemuOpts *opts, int port_offset);
int inet_listen(const char *str, char *ostr, int olen,
                int socktype, int port_offset);
int inet_connect_opts(QemuOpts *opts);
int inet_connect(const char *str, int socktype);
int inet_dgram_opts(QemuOpts *opts);
const char *inet_strfamily(int family);

int unix_listen_opts(QemuOpts *opts);
int unix_listen(const char *path, char *ostr, int olen);
int unix_connect_opts(QemuOpts *opts);
int unix_connect(const char *path);

/* Old, ipv4 only bits.  Don't use for new code. */
int parse_host_port(SockAddress*  saddr, const char *str);
int parse_host_src_port(SockAddress*  haddr, SockAddress*  saddr,
                        const char *str);

#endif /* QEMU__SOCKET_H */