StartWithConfig starts the SOCKS5 proxy server with configuration
(port int, quicConn quic.Connection, bufferSize int)
| 183 | |
| 184 | // StartWithConfig starts the SOCKS5 proxy server with configuration |
| 185 | func (p *DefaultProxy) StartWithConfig(port int, quicConn quic.Connection, bufferSize int) error { |
| 186 | return p.StartWithConfigAndContext(context.Background(), port, quicConn, bufferSize) |
| 187 | } |
| 188 | |
| 189 | // StartWithConnManager starts the SOCKS5 proxy server with a connection manager |
| 190 | func (p *DefaultProxy) StartWithConnManager(port int, cm *manager.ConnManager) error { |
nothing calls this directly
no test coverage detected