Improve socksaddr

This commit is contained in:
世界 2022-07-20 21:52:04 +08:00
parent 2af19486bb
commit fd4ec74d5e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
9 changed files with 34 additions and 47 deletions

View file

@ -81,7 +81,7 @@ func WriteRequest(writer io.Writer, request Request) error {
if err != nil {
return err
}
if request.Destination.Family().IsIPv4() {
if request.Destination.IsIPv4() {
dstIP := request.Destination.Addr.As4()
_, err = writer.Write(dstIP[:])
if err != nil {