Add relay e2e tests and output some mermaid sequence diagrams (#691)

This commit is contained in:
Nate Brown
2022-06-27 12:33:29 -05:00
committed by GitHub
parent 7b9287709c
commit 0d1ee4214a
10 changed files with 417 additions and 33 deletions

View File

@@ -36,8 +36,8 @@ func newTun(l *logrus.Logger, deviceName string, cidr *net.IPNet, _ int, routes
Routes: routes,
routeTree: routeTree,
l: l,
rxPackets: make(chan []byte, 1),
TxPackets: make(chan []byte, 1),
rxPackets: make(chan []byte, 10),
TxPackets: make(chan []byte, 10),
}, nil
}