mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
simplify the connection, rename it to sendConn
This commit is contained in:
parent
d7c2169c55
commit
89417ab5ca
16 changed files with 175 additions and 246 deletions
|
@ -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{}),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue