10 lines
145 B
Go
10 lines
145 B
Go
|
package redir
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
func parserPacket(conn net.Conn) (socks.Addr, error) {
|
||
|
return nil, errors.New("Windows not support yet")
|
||
|
}
|