commit | 15ac913bfe10abe142334a8b432c1f4c410fb04b | [log] [tgz] |
---|---|---|
author | Mark McLoughlin <markmc@redhat.com> | Thu Oct 22 17:49:13 2009 +0100 |
committer | Anthony Liguori <aliguori@us.ibm.com> | Fri Oct 30 08:39:28 2009 -0500 |
tree | a273c3b9b4f6cf5671c6e2980337b9feae979058 | |
parent | c28b1c1007883baea05bff4bc7b20d354c4b47a1 [diff] [blame] |
net: move tap_set_sndbuf() to tap-linux.c TUNSETSNDBUF is only available on linux Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff --git a/net/tap-solaris.c b/net/tap-solaris.c index 0dd5b68..de5855a 100644 --- a/net/tap-solaris.c +++ b/net/tap-solaris.c
@@ -183,3 +183,8 @@ fcntl(fd, F_SETFL, O_NONBLOCK); return fd; } + +int tap_set_sndbuf(int fd, QemuOpts *opts) +{ + return 0; +}