Joway

Results 60 comments of Joway
trafficstars

@lubanproj @hunterhug Hi, we are doing some research on UDP protocol in the RPC scenario. We found that kcp is designed for the high radio packet-loss environment, but the RPC...

@leegin Hi, can you show your browser console output?

@leegin Hi, did you run docker image as `docker run -e BURROW_BACKEND=http://your-burrow-domain joway/burrow-dashboard:latest`? Could you show what `BURROW_BACKEND` you set?

@leegin you need to add network=host in your docker-compose file.

RegisterService 本来就只能执行一次吧,为什么会出现多个goroutine并发调用的情况呢?

Hi, @gonwan > As a large request may be split into multiple packets, is it correct to loop read in the OnRequest callback? You can loop read in OnRequest. And...

@gonwan I cannot understand very well about what you mean.. could you give me a graph of your proxy's call-chain ?

@gonwan I think this feature can implement on user side? for example : type MyConn struct { conn netpoll.Connection args ... }

@welkeyever 只要域名解析出来,有可以被访问的地址,那就会一个个尝试,直到成功。另外,在 ipv4 only 下,是 ipv4 地址优先访问,ipv6 only 下 ipv6 优先访问的。

record the test cases: ``` package main import ( "log" "time" "github.com/cloudwego/netpoll" ) func connect(host string) error { _, err := netpoll.DialConnection("tcp", host, time.Second*5) return err } func main() {...