diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2024-08-12 19:53:53 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2024-08-12 21:29:21 +0200 |
commit | 86bdd968ea2df977b40b5120c13672ca6ee98c79 (patch) | |
tree | 5025aa74f7121b95e8c48b48ce4e044bfac848f9 /passt.h | |
parent | fecb1b65b1ac4d95f6a3bd5b09c189119ecf46b9 (diff) | |
download | passt-86bdd968ea2df977b40b5120c13672ca6ee98c79.tar passt-86bdd968ea2df977b40b5120c13672ca6ee98c79.tar.gz passt-86bdd968ea2df977b40b5120c13672ca6ee98c79.tar.bz2 passt-86bdd968ea2df977b40b5120c13672ca6ee98c79.tar.lz passt-86bdd968ea2df977b40b5120c13672ca6ee98c79.tar.xz passt-86bdd968ea2df977b40b5120c13672ca6ee98c79.tar.zst passt-86bdd968ea2df977b40b5120c13672ca6ee98c79.zip |
Correct inaccurate comments on ip[46]_ctx::addr
These fields are described as being an address for an external, routable
interface. That's not necessarily the case when using -a. But, more
importantly, saying where the value comes from is not as useful as what
it's used for. The real purpose of this field is as the address which we
assign to the guest via DHCP or --config-net.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'passt.h')
-rw-r--r-- | passt.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -91,7 +91,7 @@ enum passt_modes { /** * struct ip4_ctx - IPv4 execution context - * @addr: IPv4 address for external, routable interface + * @addr: IPv4 address assigned to guest * @addr_seen: Latest IPv4 address seen as source from tap * @prefixlen: IPv4 prefix length (netmask) * @gw: Default IPv4 gateway @@ -121,7 +121,7 @@ struct ip4_ctx { /** * struct ip6_ctx - IPv6 execution context - * @addr: IPv6 address for external, routable interface + * @addr: IPv6 address assigned to guest * @addr_ll: Link-local IPv6 address on external, routable interface * @addr_seen: Latest IPv6 global/site address seen as source from tap * @addr_ll_seen: Latest IPv6 link-local address seen as source from tap |