aboutgitcodebugslistschat
path: root/tap.h
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2022-10-19 11:43:49 +1100
committerStefano Brivio <sbrivio@redhat.com>2022-10-19 03:34:38 +0200
commita2eb2d310a28aa916d47c41d98dfddcc7619f639 (patch)
treee6cddc367cd3c694121b7c9f248d38206900cd11 /tap.h
parent3d8ccb44a6a3dc74b9bf7b765c7a2ae41f771d40 (diff)
downloadpasst-a2eb2d310a28aa916d47c41d98dfddcc7619f639.tar
passt-a2eb2d310a28aa916d47c41d98dfddcc7619f639.tar.gz
passt-a2eb2d310a28aa916d47c41d98dfddcc7619f639.tar.bz2
passt-a2eb2d310a28aa916d47c41d98dfddcc7619f639.tar.lz
passt-a2eb2d310a28aa916d47c41d98dfddcc7619f639.tar.xz
passt-a2eb2d310a28aa916d47c41d98dfddcc7619f639.tar.zst
passt-a2eb2d310a28aa916d47c41d98dfddcc7619f639.zip
Add helpers for normal inbound packet destination addresses
tap_ip_send() doesn't take a destination address, because it's specifically for inbound packets, and the IP addresses of the guest/namespace are already known to us. Rather than open-coding this destination address logic, make helper functions for it which will enable some later cleanups. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'tap.h')
-rw-r--r--tap.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tap.h b/tap.h
index df3aec0..a6764b4 100644
--- a/tap.h
+++ b/tap.h
@@ -6,6 +6,9 @@
#ifndef TAP_H
#define TAP_H
+in_addr_t tap_ip4_daddr(const struct ctx *c);
+const struct in6_addr *tap_ip6_daddr(const struct ctx *c,
+ const struct in6_addr *src);
void tap_ip_send(const struct ctx *c, const struct in6_addr *src, uint8_t proto,
const char *in, size_t len, uint32_t flow);
int tap_send(const struct ctx *c, const void *data, size_t len, int vnet_pre);