This repository has been archived by the owner on Jun 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
431 additions
and
432 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM golang:1.12 | ||
|
||
COPY . /go/src/github.com/gortc/stun | ||
COPY . /go/src/gortc.io/stun | ||
|
||
RUN go test github.com/gortc/stun | ||
RUN go test gortc.io/stun |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/usr/bin/env bash | ||
api -c $(ls -dm stun*.txt | tr -d ' \n') -except except.txt github.com/gortc/stun | ||
api -c $(ls -dm stun*.txt | tr -d ' \n') -except except.txt gortc.io/stun |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
pkg github.com/gortc/stun, type Handler interface { HandleEvent } | ||
pkg github.com/gortc/stun, type Handler interface, HandleEvent(Event) | ||
pkg github.com/gortc/stun, type HandlerFunc func(Event) | ||
pkg github.com/gortc/stun, method (HandlerFunc) HandleEvent(Event) | ||
pkg github.com/gortc/stun, method (*Client) Do(*Message, time.Time, func(Event)) error | ||
pkg github.com/gortc/stun, method (*Client) Start(*Message, time.Time, Handler) error | ||
pkg github.com/gortc/stun, method (*Client) Start(*Message, time.Time, Handler) error | ||
pkg github.com/gortc/stun, type ClientAgent interface { Close, Collect, Process, Start, Stop } | ||
pkg github.com/gortc/stun, method (*Agent) SetHandler(Handler) error | ||
pkg github.com/gortc/stun, method (*Agent) Start([12]uint8, time.Time, Handler) error | ||
pkg github.com/gortc/stun, func NewAgent(AgentOptions) *Agent | ||
pkg github.com/gortc/stun, type ClientAgent interface, Start([12]uint8, time.Time, Handler) error | ||
pkg github.com/gortc/stun, var ErrAttrSizeInvalid error | ||
pkg github.com/gortc/stun, type AgentOptions struct | ||
pkg github.com/gortc/stun, type AgentOptions struct, Handler Handler | ||
pkg github.com/gortc/stun, func NewClient(ClientOptions) (*Client, error) | ||
pkg github.com/gortc/stun, type ClientOptions struct | ||
pkg github.com/gortc/stun, type ClientOptions struct, Agent ClientAgent | ||
pkg github.com/gortc/stun, type ClientOptions struct, Clock Clock | ||
pkg github.com/gortc/stun, type ClientOptions struct, Collector Collector | ||
pkg github.com/gortc/stun, type ClientOptions struct, Connection Connection | ||
pkg github.com/gortc/stun, type ClientOptions struct, Handler Handler | ||
pkg github.com/gortc/stun, type ClientOptions struct, RTO time.Duration | ||
pkg github.com/gortc/stun, type ClientOptions struct, TimeoutRate time.Duration | ||
pkg github.com/gortc/stun, const CodeRoleConflict = 478 | ||
pkg gortc.io/stun, type Handler interface { HandleEvent } | ||
pkg gortc.io/stun, type Handler interface, HandleEvent(Event) | ||
pkg gortc.io/stun, type HandlerFunc func(Event) | ||
pkg gortc.io/stun, method (HandlerFunc) HandleEvent(Event) | ||
pkg gortc.io/stun, method (*Client) Do(*Message, time.Time, func(Event)) error | ||
pkg gortc.io/stun, method (*Client) Start(*Message, time.Time, Handler) error | ||
pkg gortc.io/stun, method (*Client) Start(*Message, time.Time, Handler) error | ||
pkg gortc.io/stun, type ClientAgent interface { Close, Collect, Process, Start, Stop } | ||
pkg gortc.io/stun, method (*Agent) SetHandler(Handler) error | ||
pkg gortc.io/stun, method (*Agent) Start([12]uint8, time.Time, Handler) error | ||
pkg gortc.io/stun, func NewAgent(AgentOptions) *Agent | ||
pkg gortc.io/stun, type ClientAgent interface, Start([12]uint8, time.Time, Handler) error | ||
pkg gortc.io/stun, var ErrAttrSizeInvalid error | ||
pkg gortc.io/stun, type AgentOptions struct | ||
pkg gortc.io/stun, type AgentOptions struct, Handler Handler | ||
pkg gortc.io/stun, func NewClient(ClientOptions) (*Client, error) | ||
pkg gortc.io/stun, type ClientOptions struct | ||
pkg gortc.io/stun, type ClientOptions struct, Agent ClientAgent | ||
pkg gortc.io/stun, type ClientOptions struct, Clock Clock | ||
pkg gortc.io/stun, type ClientOptions struct, Collector Collector | ||
pkg gortc.io/stun, type ClientOptions struct, Connection Connection | ||
pkg gortc.io/stun, type ClientOptions struct, Handler Handler | ||
pkg gortc.io/stun, type ClientOptions struct, RTO time.Duration | ||
pkg gortc.io/stun, type ClientOptions struct, TimeoutRate time.Duration | ||
pkg gortc.io/stun, const CodeRoleConflict = 478 |
Oops, something went wrong.