mirror of
https://passt.top/passt
synced 2025-05-23 17:55:34 +02:00
treewide: Rename MAC address fields for clarity
c->mac isn't a great name, because it doesn't say whose mac address it is and it's not necessarily obvious in all the contexts we use it. Since this is specifically the address that we (passt/pasta) use on the tap interface, rename it to "our_tap_mac". Rename the "mac_guest" field to "guest_mac" to be grammatically consistent. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
066e69986b
commit
905ecd2b0b
8 changed files with 28 additions and 26 deletions
2
passt.c
2
passt.c
|
@ -272,7 +272,7 @@ int main(int argc, char **argv)
|
|||
if ((!c.no_udp && udp_init(&c)) || (!c.no_tcp && tcp_init(&c)))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
proto_update_l2_buf(c.mac_guest, c.mac);
|
||||
proto_update_l2_buf(c.guest_mac, c.our_tap_mac);
|
||||
|
||||
if (c.ifi4 && !c.no_dhcp)
|
||||
dhcp_init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue