This repository has been archived by the owner on May 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
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
1 changed file
with
43 additions
and
0 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
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") | ||
} |