TxThinking
TxThinking
This is nothing about LAN or WLAN, it just care DST.ADDR and DST.PORT. Before send UDP data, client send `DST.ADDR and DST.PORT` with a TCP connection, so we can store...
https://github.com/txthinking/socks5/blob/master/server.go#L43 If set LimitUDP with true, server will check incoming src if it has been sent by a prev tcp connection
> Yes, DST.ADDR and DST.PORT matter. > But if the client is in a lan, it does not have a public ip. When it wants to negotiate with the server,...
What is the 'problem'?
TCP is a stream protocol, so write([0x01]), write([0x02]) is same with write([0x01, 0x02])
Can you show some related read/write code? On Mon, May 25, 2020 at 6:25 PM grayscot wrote: > but the result is not that on my pc and if you...
Any why dont you use https://github.com/txthinking/socks5/blob/master/client_side.go#L163 ? On Mon, May 25, 2020 at 6:40 PM Cloud wrote: > Can you show some related read/write code? > > On Mon, May...
1. How to set so_nodelay true or fase? 2. What does the 'package is separate three slice' mean? On Mon, May 25, 2020 at 7:08 PM grayscot wrote: > just...
Can you copy this code and run, then paste the output: ``` package main import ( "io" "log" "net" "time" ) func main() { log.SetFlags(log.LstdFlags | log.Lshortfile) a, err :=...