Start starts the SOCKS5 proxy server
(port int, quicConn quic.Connection)
| 37 | |
| 38 | // Start starts the SOCKS5 proxy server |
| 39 | func (p *DefaultProxy) Start(port int, quicConn quic.Connection) error { |
| 40 | return p.StartWithContext(context.Background(), port, quicConn) |
| 41 | } |
| 42 | |
| 43 | // generateConnectionID creates a unique ID for tracking connections |
| 44 | func generateConnectionID() string { |
nothing calls this directly
no test coverage detected