]> git.proxmox.com Git - qemu.git/blobdiff - net/tap-aix.c
Fixing network over sockets implementation for win32
[qemu.git] / net / tap-aix.c
index 5ec3b2c10fbac8cbd310e4060a6f5d51939ee667..e19aaba110e420eb138dd5db2fe02e64eed62d95 100644 (file)
@@ -30,3 +30,32 @@ int tap_open(char *ifname, int ifname_size, int *vnet_hdr, int vnet_hdr_required
     fprintf(stderr, "no tap on AIX\n");
     return -1;
 }
+
+int tap_set_sndbuf(int fd, QemuOpts *opts)
+{
+    return 0;
+}
+
+int tap_probe_vnet_hdr(int fd)
+{
+    return 0;
+}
+
+int tap_probe_has_ufo(int fd)
+{
+    return 0;
+}
+
+int tap_probe_vnet_hdr_len(int fd, int len)
+{
+    return 0;
+}
+
+void tap_fd_set_vnet_hdr_len(int fd, int len)
+{
+}
+
+void tap_fd_set_offload(int fd, int csum, int tso4,
+                        int tso6, int ecn, int ufo)
+{
+}