diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-10-22 17:49:15 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-30 08:39:28 -0500 |
commit | 1faac1f7d48d3f7bfa2d168b1ad5680d3288f585 (patch) | |
tree | 0b22b4e1f779608f3917bea94a3a09d5a38096ef /net/tap-bsd.c | |
parent | dc69004c7d89afb6ede02ca9379075c062c0c091 (diff) |
net: move tap_set_offload() code into tap-linux.c
TUNSETOFFLOAD is only available on Linux
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'net/tap-bsd.c')
-rw-r--r-- | net/tap-bsd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/tap-bsd.c b/net/tap-bsd.c index 1cdde90009..1e85a3c22d 100644 --- a/net/tap-bsd.c +++ b/net/tap-bsd.c @@ -70,3 +70,8 @@ int tap_probe_vnet_hdr(int fd) { return 0; } + +void tap_fd_set_offload(int fd, int csum, int tso4, + int tso6, int ecn, int ufo) +{ +} |