mirror of
https://github.com/quarkslab/proxyblob
synced 2026-06-08 16:52:59 +00:00
16 lines
457 B
Go
16 lines
457 B
Go
package proxy
|
|
|
|
import (
|
|
"proxyblob/pkg/protocol"
|
|
)
|
|
|
|
// handleBind processes the SOCKS5 BIND command.
|
|
// The BIND command is used to accept incoming TCP connections
|
|
// on behalf of the client. This implementation returns
|
|
// ErrUnsupportedCommand as BIND is not currently supported.
|
|
//
|
|
// The command format follows RFC 1928 Section 4.
|
|
func (h *SocksHandler) handleBind(conn *protocol.Connection, data []byte) byte {
|
|
return protocol.ErrUnsupportedCommand
|
|
}
|