diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2024-07-18 15:26:38 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2024-07-19 18:33:13 +0200 |
commit | 6d76278c21ce2aae7f68ba6807de570cc88f5499 (patch) | |
tree | f95f1d0419d6d6b4337af880ec82922b412bc92c /tap.c | |
parent | 5cffb1bf64d5133387de3587fcf7c51f2c88df6c (diff) | |
download | passt-6d76278c21ce2aae7f68ba6807de570cc88f5499.tar passt-6d76278c21ce2aae7f68ba6807de570cc88f5499.tar.gz passt-6d76278c21ce2aae7f68ba6807de570cc88f5499.tar.bz2 passt-6d76278c21ce2aae7f68ba6807de570cc88f5499.tar.lz passt-6d76278c21ce2aae7f68ba6807de570cc88f5499.tar.xz passt-6d76278c21ce2aae7f68ba6807de570cc88f5499.tar.zst passt-6d76278c21ce2aae7f68ba6807de570cc88f5499.zip |
icmp: Obtain destination addresses from the flowsides
icmp_sock_handler() obtains the guest address from it's most recently
observed IP. However, this can now be obtained from the common flowside
information.
icmp_tap_handler() builds its socket address for sendto() directly
from the destination address supplied by the incoming tap packet.
This can instead be generated from the flow.
Using the flowsides as the common source of truth here prepares us for
allowing more flexible NAT and forwarding by properly initialising
that flowside information.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'tap.c')
-rw-r--r-- | tap.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -91,17 +91,6 @@ void tap_send_single(const struct ctx *c, const void *data, size_t l2len) } /** - * tap_ip4_daddr() - Normal IPv4 destination address for inbound packets - * @c: Execution context - * - * Return: IPv4 address - */ -struct in_addr tap_ip4_daddr(const struct ctx *c) -{ - return c->ip4.addr_seen; -} - -/** * tap_ip6_daddr() - Normal IPv6 destination address for inbound packets * @c: Execution context * @src: Source address |