Files
2024-06-14 10:37:40 +08:00

12 lines
137 B
Go
Executable File

package main
import (
"errors"
"net"
)
// TODO
func (r *Request) bind(c net.Conn) error {
return errors.New("Unsupport BIND now")
}