mirror of https://github.com/cbeuw/Cloak
Fix wrong wait type
This commit is contained in:
parent
4861efbc50
commit
75dc91c15c
|
|
@ -68,7 +68,7 @@ func (sb *switchboard) removeConn(connId uint32) {
|
||||||
|
|
||||||
// a pointer to connId is passed here so that the switchboard can reassign it
|
// a pointer to connId is passed here so that the switchboard can reassign it
|
||||||
func (sb *switchboard) send(data []byte, connId *uint32) (n int, err error) {
|
func (sb *switchboard) send(data []byte, connId *uint32) (n int, err error) {
|
||||||
sb.Valve.rxWait(len(data))
|
sb.Valve.txWait(len(data))
|
||||||
sb.connsM.RLock()
|
sb.connsM.RLock()
|
||||||
defer sb.connsM.RUnlock()
|
defer sb.connsM.RUnlock()
|
||||||
if sb.strategy == UNIFORM_SPREAD {
|
if sb.strategy == UNIFORM_SPREAD {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue