Popularity
5.4
Stable
Activity
1.4
Growing
173
20
35

Programming language: Go
License: Mozilla Public License 2.0
Tags: Networking    

utp alternatives and similar packages

Based on the "Networking" category.
Alternatively, view utp alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of utp or a related project?

Add another 'Networking' Package

README

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.