diff options
author | Andrew Melnychenko <andrew@daynix.com> | 2021-05-14 14:48:30 +0300 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2021-06-04 15:25:46 +0800 |
commit | 8f364e344c3e71d4cc4e683d21241f6c36d62a5e (patch) | |
tree | 5ba18bb9310ff32504c4d5bcb48e4c6e2136c698 /net/tap-bsd.c | |
parent | 78258debe03c6034365884cbfb05679d6938aaac (diff) | |
download | qemu-8f364e344c3e71d4cc4e683d21241f6c36d62a5e.zip |
net: Added SetSteeringEBPF method for NetClientState.
For now, that method supported only by Linux TAP.
Linux TAP uses TUNSETSTEERINGEBPF ioctl.
Signed-off-by: Andrew Melnychenko <andrew@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.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 77aaf674b1..4f64f31e98 100644 --- a/net/tap-bsd.c +++ b/net/tap-bsd.c @@ -259,3 +259,8 @@ int tap_fd_get_ifname(int fd, char *ifname) { return -1; } + +int tap_fd_set_steering_ebpf(int fd, int prog_fd) +{ + return -1; +} |