文件名称:go-utp:Golang中的μTP(微传输协议)实现
文件大小:21KB
文件格式:ZIP
更新时间:2024-08-02 02:47:46
Go
输出 μTP(微传输协议)实现 警告:这是一个有问题的 alpha 版本。 基准历史 安装 go get github.com/h2so5/utp 例子 回声服务器 package main import ( "time" "github.com/h2so5/utp" ) func main () { ln , _ := utp . Listen ( "utp" , ":11000" ) defer ln . Close () conn , _ := ln . AcceptUTP () conn . SetKeepAlive ( time . Minute ) defer conn . Close () for { var buf [ 1024 ] byte l , err := conn . Read ( buf [:]) if err != nil
【文件预览】:
go-utp-master
----.travis.yml(175B)
----benchmark()
--------main.go(5KB)
----log.go(710B)
----utp_test.go(11KB)
----_ucat_test()
--------ucat_test.go(2KB)
--------Makefile(286B)
----LICENSE(1KB)
----ucat()
--------test_simple.sh(1KB)
--------ucat.go(4KB)
--------.gitignore(20B)
--------Makefile(534B)
----dial.go(2KB)
----listener.go(6KB)
----.gitignore(285B)
----conn.go(15KB)
----addr.go(566B)
----README.md(1016B)
----utp.go(496B)
----packet.go(4KB)
----buffer.go(4KB)