mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
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")
|
||
|
}
|