utp
utp copied to clipboard
Use anacrolix/go-libutp instead
here: https://www.bittorrent.org/beps/bep_0029.html
This repository currently deprecated in favour of https://github.com/anacrolix/go-libutp. Issues, PRs and comments are still accepted.
I am trying to hunt down an issue I have with this library where I notice that the uTP transfer does not back-off when there is TCP background traffic. Tracing...
Using this benchmark: ``` import ( "net" "testing" "github.com/anacrolix/utp" ) func getTCPConnectionPair() (net.Conn, net.Conn, error) { lst, err := net.Listen("tcp", "127.0.0.1:0") if err != nil { return nil, nil, err...