1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
  
     | 
    
      Source: golang-github-xtaci-smux
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders:
 Anthony Fok <foka@debian.org>,
 Roger Shimizu <rosh@debian.org>
Build-Depends:
 debhelper-compat (= 12),
 dh-golang,
 golang-any,
 golang-github-pkg-errors-dev
Standards-Version: 4.5.0
Rules-Requires-Root: no
Homepage: https://github.com/xtaci/smux
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-xtaci-smux
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-xtaci-smux.git
XS-Go-Import-Path: github.com/xtaci/smux
Testsuite: autopkgtest-pkg-go
Package: golang-github-xtaci-smux-dev
Architecture: all
Multi-Arch: foreign
Depends:
 ${shlibs:Depends},
 ${misc:Depends},
 golang-github-pkg-errors-dev
Description: Simple Multiplexing for golang
 Smux (Simple MUltipleXing) is a multiplexing library for Golang.
 It relies on an underlying connection to provide reliability and ordering,
 such as TCP or KCP (golang-github-xtaci-kcp-dev), and provides
 stream-oriented multiplexing.
 .
 The original intention of this library is to power the connection
 management for KCP (golang-github-xtaci-kcp-dev).
 .
 Features:
   * Tiny, less than 600 LOC.
   * Token bucket controlled receiving, which provides smoother bandwidth
     graph.
   * Session-wide receive buffer, shared among streams, tightly controlled
     overall memory usage.
   * Minimized header(8Bytes), maximized payload.
   * Well-tested on millions of devices in kcptun.
 
     |