Revert all yggquic changes

This reverts commit 4ab9007abe.
This commit is contained in:
Neil Alexander
2023-12-10 11:00:27 +00:00
parent 9c0f9f68bb
commit 767f9b8c5d
8 changed files with 182 additions and 23 deletions

View File

@@ -13,6 +13,6 @@ import (
)
type Transport interface {
Dial(network, host string) (net.Conn, error)
net.Listener
Dial(host string) (net.Conn, error)
Listener() net.Listener
}