| 1234567891011121314151617181920212223242526 | //go:build e2e_testing// +build e2e_testingpackage nebula// This file contains functions used to export information to the e2e testing frameworkimport (	"net/netip")func (i *HostInfo) GetVpnAddrs() []netip.Addr {	return i.vpnAddrs}func (i *HostInfo) GetLocalIndex() uint32 {	return i.localIndexId}func (i *HostInfo) GetRemoteIndex() uint32 {	return i.remoteIndexId}func (i *HostInfo) GetRelayState() *RelayState {	return &i.relayState}
 |