https://github.com/int128/listener
Go package to allocate a net.Listener from address candidates or free port
https://github.com/int128/listener
golang network
Last synced: 4 months ago
JSON representation
Go package to allocate a net.Listener from address candidates or free port
- Host: GitHub
- URL: https://github.com/int128/listener
- Owner: int128
- License: apache-2.0
- Created: 2019-10-03T00:57:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-15T05:17:41.000Z (5 months ago)
- Last Synced: 2025-02-27T04:54:08.215Z (5 months ago)
- Topics: golang, network
- Language: Go
- Homepage:
- Size: 140 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# listener [](https://github.com/int128/listener/actions/workflows/go.yaml) [](https://godoc.org/github.com/int128/listener)
This is a Go package to allocate a net.Listener from address candidates.
```sh
go get github.com/int128/listener
```## Examples
### Allocate a free port
To allocate a `net.Listener` at a free port on localhost:
```go
package mainimport (
"fmt""github.com/int128/listener"
)func main() {
l, err := listener.New(nil)
if err != nil {
panic(err)
}
defer l.Close()fmt.Printf("Open %s", l.URL)
}
```### Allocate a port from candidates
To allocate a `net.Listener` at a port 18000 or 28000 on localhost:
```go
package mainimport (
"fmt""github.com/int128/listener"
)func main() {
l, err := listener.New([]string{"127.0.0.1:18000", "127.0.0.1:28000"})
if err != nil {
panic(err)
}
defer l.Close()fmt.Printf("Open %s", l.URL)
}
```If port 18000 is already in use, it will allocate port 28000.
## Contributions
This is an open source software.
Free free to open issues and pull requests.