qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 1/3] net: Make inet_strfamily() public


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH 1/3] net: Make inet_strfamily() public
Date: Wed, 20 Jan 2010 08:56:58 -0600
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.5) Gecko/20091209 Fedora/3.0-4.fc12 Lightning/1.0pre Thunderbird/3.0

On 01/20/2010 07:42 AM, Luiz Capitulino wrote:
So that it can be used by other subsystems.

Signed-off-by: Luiz Capitulino<address@hidden>

Applied.  Thanks.

Regards,

Anthony Liguori
---
  qemu-sockets.c |    2 +-
  qemu_socket.h  |    1 +
  2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/qemu-sockets.c b/qemu-sockets.c
index 8850516..720de22 100644
--- a/qemu-sockets.c
+++ b/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";
diff --git a/qemu_socket.h b/qemu_socket.h
index 86bdbf5..7ee46ac 100644
--- a/qemu_socket.h
+++ b/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);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]