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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
Source: golang-github-xtaci-kcp
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Roger Shimizu <rosh@debian.org>
Build-Depends:
debhelper-compat (= 12),
dh-golang (>= 1.19~),
golang-any,
golang-github-klauspost-reedsolomon-dev (>= 1.3),
golang-github-pkg-errors-dev,
golang-github-stretchr-testify-dev,
golang-github-templexxx-xor-dev,
golang-github-tjfoc-gmsm-dev,
golang-golang-x-crypto-dev,
golang-golang-x-net-dev
Standards-Version: 4.5.0
Rules-Requires-Root: no
Homepage: https://github.com/xtaci/kcp-go
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-xtaci-kcp
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-xtaci-kcp.git
XS-Go-Import-Path: github.com/xtaci/kcp-go
Testsuite: autopkgtest-pkg-go
Package: golang-github-xtaci-kcp-dev
Architecture: all
Depends:
${shlibs:Depends},
${misc:Depends},
golang-github-klauspost-reedsolomon-dev (>= 1.3),
golang-github-pkg-errors-dev,
golang-github-templexxx-xor-dev,
golang-github-tjfoc-gmsm-dev,
golang-golang-x-crypto-dev,
golang-golang-x-net-dev
Description: Full-Featured Reliable-UDP Library for golang
KCP (golang-github-xtaci-kcp-dev) is a Production-Grade Reliable-UDP
library for golang. It provides fast, ordered, and error-checked delivery
of stream over UDP packets.
.
It has been well tested with opensource project kcptun, which runs on
millions of devices, from low-end MIPS routers to high-end servers. It also
runs well for applications like online games, live broadcasting, file
synchronization and network acceleration.
.
Features:
* Optimized for Realtime Multiplayer Games, Audio/Video Streaming.
* Compatible with skywind3000's (https://github.com/skywind3000)
C version with optimizations.
* Cache friendly and Memory optimized design in golang.
* Compatible with net.Conn (https://golang.org/pkg/net/#Conn)
and net.Listener (https://golang.org/pkg/net/#Listener).
* FEC (Forward Error Correction)
(https://en.wikipedia.org/wiki/Forward_error_correction)
Support with Reed-Solomon Codes
(https://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction)
* Packet level encryption support with AES, TEA, 3DES, Blowfish, Cast5,
Salsa20, etc., in CFB mode.
* O(1) goroutines created for the entire server application, minimized
goroutine context switch.
.
Conventions:
Control messages like SYN/FIN/RST in TCP are not defined in KCP.
You need some keepalive/heartbeat mechanims in the application-level.
A real world example is to use some multiplexing protocol over session,
such as smux (golang-github-xtaci-smux-dev) with embedded keepalive
mechanism. See kcptun (https://github.com/xtaci/kcptun) for example.
|