Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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
```