| 6 | ) |
| 7 | |
| 8 | type Stream interface { |
| 9 | ListenAndServe(ctx context.Context, preDial, onRead HookFunc) error |
| 10 | LocalAddr() net.Addr |
| 11 | Close() error |
| 12 | } |
| 13 | |
| 14 | type ConnProxy interface { |
| 15 | ProxyConn(ctx context.Context, conn net.Conn) |
no outgoing calls
no test coverage detected