Browse Source

net: Make inet_strfamily() public

So that it can be used by other subsystems.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
stable-0.13
Luiz Capitulino 17 years ago
committed by Anthony Liguori
parent
commit
c9c4b34ed5
  1. 2
      qemu-sockets.c
  2. 1
      qemu_socket.h

2
qemu-sockets.c

@ -91,7 +91,7 @@ static void inet_setport(struct addrinfo *e, int port)
}
}
static const char *inet_strfamily(int family)
const char *inet_strfamily(int family)
{
switch (family) {
case PF_INET6: return "ipv6";

1
qemu_socket.h

@ -44,6 +44,7 @@ int inet_listen(const char *str, char *ostr, int olen,
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);

Loading…
Cancel
Save