gnet @ v2.8.0
integrity
- size
- 195.1 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/panjf2000/gnet/v2
release notes
[!IMPORTANT] The most significant enhancement in this release is the support for registering new connections to event loops!
🚀 Features
- feat: add
EventLoopinterface and implementation (#700) - feat: implement
Engine.DupListenermethod for multiple listeners (#701) - feat: support
Conn.SendTofor UDP (#694)
🛩 Enhancements
- opt: release outboundBuffer immediately in
Conn.AsyncWritewhenConnis closed (#673)
🐛 Bugfixes
- opt: avoid setting
SO_REUSEPORTonAF_UNIXsockets (#695)
🗃 Misc
- chore: upgrade dependencies (#705)
- chore: bump up modules (#681)
- chore: expurgate conn.asyncWrite/asyncWritev (#674)
- test: add an example for the netpoll package (#670)
Full Changelog: https://github.com/panjf2000/gnet/compare/v2.7.0...v2.8.0
Thanks to all these contributors: @panjf2000 for making this release possible.
download
unix · zip
curl -fL -o v2.8.0.zip https://ratatoskr.space/pkg/gnet/v2.8.0.zip
printf '%s %s\n' 'f944df3e7205dc5ff205ead974d37b289a701b99d27419ca4a7beb97d3d0a896' 'v2.8.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/gnet/v2.8.0.zip"
$out = "v2.8.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f944df3e7205dc5ff205ead974d37b289a701b99d27419ca4a7beb97d3d0a896") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.8.0.tar.gz https://ratatoskr.space/pkg/gnet/v2.8.0.tar.gz
printf '%s %s\n' 'f62c6e7299d6c979a506fbd71a865792b051a2d1cbb6e89418ce633e0c714012' 'v2.8.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/gnet/v2.8.0.tar.gz"
$out = "v2.8.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f62c6e7299d6c979a506fbd71a865792b051a2d1cbb6e89418ce633e0c714012") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v2.8.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gnet/v2.8.0.zip
printf '%s %s\n' 'f944df3e7205dc5ff205ead974d37b289a701b99d27419ca4a7beb97d3d0a896' 'v2.8.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gnet/v2.8.0.zip"
$out = "v2.8.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f944df3e7205dc5ff205ead974d37b289a701b99d27419ca4a7beb97d3d0a896") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.8.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gnet/v2.8.0.tar.gz
printf '%s %s\n' 'f62c6e7299d6c979a506fbd71a865792b051a2d1cbb6e89418ce633e0c714012' 'v2.8.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gnet/v2.8.0.tar.gz"
$out = "v2.8.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f62c6e7299d6c979a506fbd71a865792b051a2d1cbb6e89418ce633e0c714012") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v2.8.0.zip | zip | 195.1 KiB |
blake3-24 b3083e5364e99073dc13627f4a64d39917ed81f865944d33
sha256 f944df3e7205dc5ff205ead974d37b289a701b99d27419ca4a7beb97d3d0a896
sha1 22c77a420dd2ce15af1217ce14b9109e95891425
|
| v2.8.0.tar.gz | tar.gz | 110.5 KiB |
blake3-24 3e7fe61ef39b0c3420cbe9b2c9ee7e9444837b7d541518a4
sha256 f62c6e7299d6c979a506fbd71a865792b051a2d1cbb6e89418ce633e0c714012
sha1 8df11a8dc639956f02103f2342a30e1fb563c220
|
go module archive
module zip with the module path rewritten to this mirror; fetched by go get through the
GOPROXY route
| artifact | format | size | hashes |
|---|---|---|---|
| v2.8.0.zip | zip | 198.4 KiB |
blake3-24 644404bc818bbd4deab8e3d60ddcc57e2888c46813a49eec
sha256 fe01466004e138551647e25018b844ea7ae1a98f2309c54669f5dc097ec837bc
sha1 f99af20be62711f167c7afe860ca7ed2b0defba5
|
install
bazel
http_archive(
name = "gnet",
urls = ["https://ratatoskr.space/pkg/gnet/v2.8.0.tar.gz"],
integrity = "sha256-9ixucpnWyXmlBvvXGoZXkrBRotHLtuiUGM5jPgxxQBI=",
strip_prefix = "gnet-v2.8.0",
)
zig
.url = "https://ratatoskr.space/pkg/gnet/v2.8.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/gnet/v2@v2.8.0
install via yggdrasil mesh
bazel
http_archive(
name = "gnet",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gnet/v2.8.0.tar.gz"],
integrity = "sha256-9ixucpnWyXmlBvvXGoZXkrBRotHLtuiUGM5jPgxxQBI=",
strip_prefix = "gnet-v2.8.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gnet/v2.8.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gnet/v2@v2.8.0