Merged in rtmp-conn-as-interface (pull request #133)

rtmp: Use a net.Conn interface instead of *net.TCPConn.

Approved-by: kortschak <dan@kortschak.io>
Approved-by: Alan Noble <anoble@gmail.com>
This commit is contained in:
Alan Noble 2019-02-02 03:37:09 +00:00
commit f28cb0c500
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ type link struct {
protocol int32
timeout uint
port uint16
conn *net.TCPConn
conn net.Conn
}
// method represents an RTMP method.