pass the raw packet to the Drop- and Delay callbacks of the proxy

This commit is contained in:
Marten Seemann 2019-06-30 16:32:18 +07:00
parent 3dcbaee89e
commit 7827cd61bc
8 changed files with 58 additions and 68 deletions

View file

@ -82,7 +82,7 @@ var _ = Describe("Timeout tests", func() {
proxy, err := quicproxy.NewQuicProxy("localhost:0", &quicproxy.Opts{
RemoteAddr: fmt.Sprintf("localhost:%d", server.Addr().(*net.UDPAddr).Port),
DropPacket: func(d quicproxy.Direction, p uint64) bool {
DropPacket: func(quicproxy.Direction, []byte) bool {
return drop.Get()
},
})