mirror of
https://passt.top/passt
synced 2024-11-05 20:31:11 +00:00
06abfcf6d9
Now that the back end allows passt/pasta to use different external interfaces for IPv4 and IPv6, use that to do the right thing in the case that the host has IPv4 and IPv6 connectivity via different interfaces. If the user hasn't explicitly chosen an interface, separately search for a suitable external interface for each protocol. As a bonus, this substantially simplifies the external interface probe. It also eliminates a subtle confusing case where in some circumstances we would pick the first interface in interface index order, and sometimes in order of routes returned from netlink. On some network configurations that could cause tests to fail, because the logic in the tests was subtly different (it always used route order). Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
17 lines
517 B
C
17 lines
517 B
C
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
*/
|
|
|
|
#ifndef NETLINK_H
|
|
#define NETLINK_H
|
|
|
|
int nl_sock_init(const struct ctx *c);
|
|
unsigned int nl_get_ext_if(sa_family_t af);
|
|
void nl_route(int ns, unsigned int ifi, sa_family_t af, void *gw);
|
|
void nl_addr(int ns, unsigned int ifi, sa_family_t af,
|
|
void *addr, int *prefix_len, void *addr_l);
|
|
void nl_link(int ns, unsigned int ifi, void *mac, int up, int mtu);
|
|
|
|
#endif /* NETLINK_H */
|