status-go/vendor/github.com/libp2p/go-reuseport
richΛrd 9e0fb30f8d
chore_: bump go-waku (#5150)
2024-05-15 19:15:00 -04:00
..
LICENSE
README.md chore: bump libp2p related dependencies 2023-06-30 14:23:08 -04:00
addr.go
codecov.yml
control_freebsd.go chore_: bump go-waku (#5150) 2024-05-15 19:15:00 -04:00
control_plan9.go
control_unix.go chore_: bump go-waku (#5150) 2024-05-15 19:15:00 -04:00
control_wasm.go chore: bump libp2p related dependencies 2023-06-30 14:23:08 -04:00
control_windows.go chore: bump libp2p related dependencies 2023-06-30 14:23:08 -04:00
interface.go chore: bump libp2p related dependencies 2023-06-30 14:23:08 -04:00
version.json chore_: bump go-waku (#5150) 2024-05-15 19:15:00 -04:00

README.md

go-reuseport

GoDoc codecov Travis CI Discourse posts

This package enables listening and dialing from the same TCP or UDP port. This means that the following sockopts may be set:

SO_REUSEADDR
SO_REUSEPORT

This is a simple package to help with address reuse. This is particularly important when attempting to do TCP NAT holepunching, which requires a process to both Listen and Dial on the same TCP port. This package provides some utilities around enabling this behaviour on various OS.

Examples

// listen on the same port. oh yeah.
l1, _ := reuse.Listen("tcp", "127.0.0.1:1234")
l2, _ := reuse.Listen("tcp", "127.0.0.1:1234")
// dial from the same port. oh yeah.
l1, _ := reuse.Listen("tcp", "127.0.0.1:1234")
l2, _ := reuse.Listen("tcp", "127.0.0.1:1235")
c, _ := reuse.Dial("tcp", "127.0.0.1:1234", "127.0.0.1:1235")

Note: cant dial self because tcp/ip stacks use 4-tuples to identify connections, and doing so would clash.

Tested

Tested on darwin, linux, and windows.


The last gx published version of this module was: 0.2.2: Qme8kdM7thoCqLqd7GYCRqipoZJS64rhJo5MBcTpyWfsL9