周玉环 d906a41c2e first commit преди 2 дни
..
LICENSE d906a41c2e first commit преди 2 дни
NOTES d906a41c2e first commit преди 2 дни
README.md d906a41c2e first commit преди 2 дни
addr.go d906a41c2e first commit преди 2 дни
conn.go d906a41c2e first commit преди 2 дни
deadlines.go d906a41c2e first commit преди 2 дни
expvar.go d906a41c2e first commit преди 2 дни
header.go d906a41c2e first commit преди 2 дни
nop.go d906a41c2e first commit преди 2 дни
pingpong d906a41c2e first commit преди 2 дни
send.go d906a41c2e first commit преди 2 дни
socket.go d906a41c2e first commit преди 2 дни
status.go d906a41c2e first commit преди 2 дни
utp.go d906a41c2e first commit преди 2 дни

README.md

utp

GoDoc CircleCI

Package utp implements uTP, the micro transport protocol as used with Bittorrent. It opts for simplicity and reliability over strict adherence to the (poor) spec.

Supported

  • Multiple uTP connections switched on a single PacketConn, including those initiated locally.
  • Raw access to the PacketConn for non-uTP purposes, like sharing the PacketConn with a DHT implementation.

Implementation characteristics

  • There is no MTU path discovery.
  • A fixed 64 slot selective ack window is used in both sending and receiving.

Patches welcomed.