Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

Commit

Permalink
turn.client: init
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed Jun 25, 2018
1 parent 42b27e4 commit 8a1290b
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions internal/turn-client/client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// Package turn_client implements TURN client.
//
// Is subject to merge to gortc/turn when stabilized.
package turn_client

import (
"net"
"time"
)

type Client struct {
}

type Conn struct {
}

func (Conn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
panic("implement me")
}

func (Conn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
panic("implement me")
}

func (Conn) Close() error {
panic("implement me")
}

func (Conn) LocalAddr() net.Addr {
panic("implement me")
}

func (Conn) SetDeadline(t time.Time) error {
panic("implement me")
}

func (Conn) SetReadDeadline(t time.Time) error {
panic("implement me")
}

func (Conn) SetWriteDeadline(t time.Time) error {
panic("implement me")
}

0 comments on commit 8a1290b

Please sign in to comment.