Skip to content

Commit 0dce89f

Browse files
committed
add ice and turn
1 parent fffa87e commit 0dce89f

18 files changed

+26
-27
lines changed

README.md

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,3 @@
1-
# stungo
1+
# icego
22

3-
[![Build Status](https://travis-ci.org/osrtss/stungo.svg?branch=master)](https://travis-ci.org/osrtss/stungo) [![Coverage Status](https://coveralls.io/repos/github/osrtss/stungo/badge.svg?branch=master)](https://coveralls.io/github/osrtss/stungo?branch=master) [![Go Report Card](https://goreportcard.com/badge/github.com/osrtss/stungo)](https://goreportcard.com/report/github.com/osrtss/stungo) [![GoDoc](https://godoc.org/github.com/osrtss/stungo?status.svg)](https://godoc.org/github.com/osrtss/stungo)
4-
5-
STUN (RFC 3489, 5389) client and server implementation in Go.
6-
7-
## Features
8-
9-
- [x] STUN Message Encoder/Decoder
10-
- [x] STUN Client/Server
11-
- [x] STUN Authorization
12-
- [ ] STUN Redirect
13-
- [ ] STUN Service Discovery
14-
- [ ] STUN Client demo
15-
- [ ] STUN Server demo
16-
17-
## Install
18-
19-
* `go get github.com/osrtss/stungo`
20-
21-
## Import
22-
23-
* `import "github.com/osrtss/stungo"`
24-
25-
## RFCs
26-
27-
* [RFC 5389: STUN](https://datatracker.ietf.org/doc/rfc5389/)
28-
* [RFC 7064: URI Scheme for STUN](https://datatracker.ietf.org/doc/rfc7064/)
3+
Package icego implements STUN, TURN and ICE Protocols in Go

doc.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Package icego implements STUN, TURN and ICE Protocols in Go
2+
package icego

ice/ice.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package ice

ice/ice_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package ice_test

stun/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# stungo
2+
3+
STUN (RFC 3489, 5389) client and server implementation in Go.
4+
5+
## Features
6+
7+
- [x] STUN Message Encoder/Decoder
8+
- [x] STUN Client/Server
9+
- [x] STUN Authorization
10+
- [ ] STUN Redirect
11+
- [ ] STUN Service Discovery
12+
- [ ] STUN Client demo
13+
- [ ] STUN Server demo
14+
15+
## RFCs
16+
17+
* [RFC 5389: STUN](https://datatracker.ietf.org/doc/rfc5389/)
18+
* [RFC 7064: URI Scheme for STUN](https://datatracker.ietf.org/doc/rfc7064/)
File renamed without changes.
File renamed without changes.
File renamed without changes.

conn.go renamed to stun/conn.go

File renamed without changes.
File renamed without changes.
File renamed without changes.

error.go renamed to stun/error.go

File renamed without changes.
File renamed without changes.
File renamed without changes.

stun.go renamed to stun/stun.go

File renamed without changes.
File renamed without changes.

turn/turn.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package turn

turn/turn_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package turn_test

0 commit comments

Comments
 (0)