mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Remove 4in6 cast
This commit is contained in:
parent
86d7d51023
commit
b12b8b7fd2
7 changed files with 36 additions and 24 deletions
|
@ -18,5 +18,5 @@ func SourceAddress(request *http.Request) M.Socksaddr {
|
|||
}
|
||||
}
|
||||
}
|
||||
return address
|
||||
return address.Unwrap()
|
||||
}
|
||||
|
|
|
@ -96,7 +96,7 @@ func WriteRequest(writer io.Writer, request Request) error {
|
|||
binary.Write(buffer, binary.BigEndian, request.Destination.Port),
|
||||
)
|
||||
if request.Destination.IsIPv4() {
|
||||
common.Must1(buffer.Write(request.Destination.Unwrap().Addr.AsSlice()))
|
||||
common.Must1(buffer.Write(request.Destination.Addr.AsSlice()))
|
||||
} else {
|
||||
// 0.0.0.X
|
||||
common.Must(buffer.WriteZeroN(3))
|
||||
|
@ -153,7 +153,7 @@ func WriteResponse(writer io.Writer, response Response) error {
|
|||
buffer.WriteByte(0),
|
||||
buffer.WriteByte(response.ReplyCode),
|
||||
binary.Write(buffer, binary.BigEndian, response.Destination.Port),
|
||||
common.Error(buffer.Write(response.Destination.Unwrap().Addr.AsSlice())),
|
||||
common.Error(buffer.Write(response.Destination.Addr.AsSlice())),
|
||||
)
|
||||
return rw.WriteBytes(writer, buffer.Bytes())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue