周玉环 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.