mirror of
https://github.com/tailscale/tailscale.git
synced 2025-03-14 01:11:01 +00:00
tstest/natlab: use &Network in test.
Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
622c0d0cb3
commit
c53b154171
@ -78,7 +78,7 @@ func TestSendPacket(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestMultiNetwork(t *testing.T) {
|
||||
lan := Network{
|
||||
lan := &Network{
|
||||
Name: "lan",
|
||||
Prefix4: mustPrefix("192.168.0.0/24"),
|
||||
}
|
||||
@ -88,9 +88,9 @@ func TestMultiNetwork(t *testing.T) {
|
||||
nat := NewMachine("nat")
|
||||
server := NewMachine("server")
|
||||
|
||||
ifClient := client.Attach("eth0", &lan)
|
||||
ifClient := client.Attach("eth0", lan)
|
||||
ifNATWAN := nat.Attach("ethwan", internet)
|
||||
ifNATLAN := nat.Attach("ethlan", &lan)
|
||||
ifNATLAN := nat.Attach("ethlan", lan)
|
||||
ifServer := server.Attach("eth0", internet)
|
||||
|
||||
clientPC, err := client.ListenPacket("udp", ":123")
|
||||
|
Loading…
x
Reference in New Issue
Block a user