simplify the connection, rename it to sendConn

This commit is contained in:
Marten Seemann 2020-08-09 19:04:08 +07:00
parent d7c2169c55
commit 89417ab5ca
16 changed files with 175 additions and 246 deletions

View file

@ -4,10 +4,10 @@ type sendQueue struct {
queue chan *packetBuffer
closeCalled chan struct{} // runStopped when Close() is called
runStopped chan struct{} // runStopped when the run loop returns
conn connection
conn sendConn
}
func newSendQueue(conn connection) *sendQueue {
func newSendQueue(conn sendConn) *sendQueue {
s := &sendQueue{
conn: conn,
runStopped: make(chan struct{}),