ekr / minq

A simple Go implementation of QUIC
MIT License
98 stars 16 forks source link

Implementation of SetExtensionHandler missing #22

Closed mkieweg closed 7 years ago

mkieweg commented 7 years ago

The function SetExtensionHandler in tls.go:76 is not implemented. Therefore the example client and server implementations aren't working.

pietdevaere commented 7 years ago

I'm experiencing the same issue while trying to set up minq.

pietdevaere commented 7 years ago
# github.com/ekr/minq
./tls.go:76:7: c.tls.SetExtensionHandler undefined (type *mint.Conn has no field or method SetExtensionHandler)
FAIL    github.com/ekr/minq [build failed]
ekr commented 7 years ago

Oh, the instructions have bit rotted. Try Mint master.

pietdevaere commented 7 years ago

That works. Thanks!