tunnel: remove unused test loop (#1878)
Co-authored-by: Asim Aslam <asim@aslam.me>
This commit is contained in:
parent
d66803a136
commit
3d1ba914fc
@ -113,27 +113,25 @@ func testAccept(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// get a message
|
// get a message
|
||||||
for {
|
// accept the message
|
||||||
// accept the message
|
m := new(transport.Message)
|
||||||
m := new(transport.Message)
|
if err := c.Recv(m); err != nil {
|
||||||
if err := c.Recv(m); err != nil {
|
t.Fatal(err)
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if v := m.Header["test"]; v != "send" {
|
|
||||||
t.Fatalf("Accept side expected test:send header. Received: %s", v)
|
|
||||||
}
|
|
||||||
|
|
||||||
// now respond
|
|
||||||
m.Header["test"] = "accept"
|
|
||||||
if err := c.Send(m); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
wait <- true
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if v := m.Header["test"]; v != "send" {
|
||||||
|
t.Fatalf("Accept side expected test:send header. Received: %s", v)
|
||||||
|
}
|
||||||
|
|
||||||
|
// now respond
|
||||||
|
m.Header["test"] = "accept"
|
||||||
|
if err := c.Send(m); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
wait <- true
|
||||||
|
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// testSend will create a new link to an address and then a tunnel on top
|
// testSend will create a new link to an address and then a tunnel on top
|
||||||
|
Loading…
Reference in New Issue
Block a user