Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thebagchi/sctp-go
SCTP Library for golang
https://github.com/thebagchi/sctp-go
golang sctp
Last synced: 24 days ago
JSON representation
SCTP Library for golang
- Host: GitHub
- URL: https://github.com/thebagchi/sctp-go
- Owner: thebagchi
- License: mit
- Created: 2020-11-28T15:37:13.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-31T18:51:15.000Z (about 1 year ago)
- Last Synced: 2024-08-04T00:04:34.256Z (4 months ago)
- Topics: golang, sctp
- Language: Go
- Homepage:
- Size: 57.6 KB
- Stars: 16
- Watchers: 2
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-5g - sctp-go - SCTP Library for golang. (Protocols / SCTP)
README
# Using sctp in golang.
## See example/sctp_server.go for server implementation.
## See example/sctp_client.go for client implementation.### Running Server
#### Stream Server
```sh
$ go run example/sctp_server.go
```#### Sequential Packet Server
```sh
$ go run example/packet_server.go
```### Running Client
#### Stream Client
```sh
$ go run example/sctp_client.go
```#### Sequential Packet Client
```sh
$ go run example/packet_client.go
```#### Getting
```sh
$ go get github.com/thebagchi/sctp-go
```