mirror of https://github.com/cbeuw/Cloak
Use sync.Map in multiplex instead of manual locks
This commit is contained in:
parent
9cab4670f4
commit
c26be98e79
|
|
@ -167,6 +167,7 @@ func dispatchConnection(conn net.Conn, sta *server.State) {
|
||||||
user.CloseSession(ci.SessionId, "")
|
user.CloseSession(ci.SessionId, "")
|
||||||
return
|
return
|
||||||
} else {
|
} else {
|
||||||
|
// TODO: other errors
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -51,8 +51,7 @@ type Session struct {
|
||||||
// atomic
|
// atomic
|
||||||
nextStreamID uint32
|
nextStreamID uint32
|
||||||
|
|
||||||
streamsM sync.Mutex
|
streams sync.Map
|
||||||
streams map[uint32]*Stream
|
|
||||||
|
|
||||||
// Switchboard manages all connections to remote
|
// Switchboard manages all connections to remote
|
||||||
sb *switchboard
|
sb *switchboard
|
||||||
|
|
@ -73,7 +72,6 @@ func MakeSession(id uint32, config *SessionConfig) *Session {
|
||||||
id: id,
|
id: id,
|
||||||
SessionConfig: config,
|
SessionConfig: config,
|
||||||
nextStreamID: 1,
|
nextStreamID: 1,
|
||||||
streams: make(map[uint32]*Stream),
|
|
||||||
acceptCh: make(chan *Stream, acceptBacklog),
|
acceptCh: make(chan *Stream, acceptBacklog),
|
||||||
}
|
}
|
||||||
sesh.addrs.Store([]net.Addr{nil, nil})
|
sesh.addrs.Store([]net.Addr{nil, nil})
|
||||||
|
|
@ -108,14 +106,12 @@ func (sesh *Session) OpenStream() (*Stream, error) {
|
||||||
}
|
}
|
||||||
id := atomic.AddUint32(&sesh.nextStreamID, 1) - 1
|
id := atomic.AddUint32(&sesh.nextStreamID, 1) - 1
|
||||||
// Because atomic.AddUint32 returns the value after incrementation
|
// Because atomic.AddUint32 returns the value after incrementation
|
||||||
connId, err := sesh.sb.assignRandomConn()
|
connId, _, err := sesh.sb.pickRandConn()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
stream := makeStream(sesh, id, connId)
|
stream := makeStream(sesh, id, connId)
|
||||||
sesh.streamsM.Lock()
|
sesh.streams.Store(id, stream)
|
||||||
sesh.streams[id] = stream
|
|
||||||
sesh.streamsM.Unlock()
|
|
||||||
log.Tracef("stream %v of session %v opened", id, sesh.id)
|
log.Tracef("stream %v of session %v opened", id, sesh.id)
|
||||||
return stream, nil
|
return stream, nil
|
||||||
}
|
}
|
||||||
|
|
@ -128,9 +124,7 @@ func (sesh *Session) Accept() (net.Conn, error) {
|
||||||
if stream == nil {
|
if stream == nil {
|
||||||
return nil, ErrBrokenSession
|
return nil, ErrBrokenSession
|
||||||
}
|
}
|
||||||
sesh.streamsM.Lock()
|
sesh.streams.Store(stream.id, stream)
|
||||||
sesh.streams[stream.id] = stream
|
|
||||||
sesh.streamsM.Unlock()
|
|
||||||
log.Tracef("stream %v of session %v accepted", stream.id, sesh.id)
|
log.Tracef("stream %v of session %v accepted", stream.id, sesh.id)
|
||||||
return stream, nil
|
return stream, nil
|
||||||
}
|
}
|
||||||
|
|
@ -166,26 +160,29 @@ func (sesh *Session) closeStream(s *Stream, active bool) error {
|
||||||
log.Tracef("stream %v passively closed", s.id)
|
log.Tracef("stream %v passively closed", s.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
sesh.streamsM.Lock()
|
sesh.streams.Delete(s.id)
|
||||||
delete(sesh.streams, s.id)
|
var count int
|
||||||
if len(sesh.streams) == 0 {
|
sesh.streams.Range(func(_, _ interface{}) bool {
|
||||||
|
count += 1
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
if count == 0 {
|
||||||
log.Tracef("session %v has no active stream left", sesh.id)
|
log.Tracef("session %v has no active stream left", sesh.id)
|
||||||
go sesh.timeoutAfter(30 * time.Second)
|
go sesh.timeoutAfter(30 * time.Second)
|
||||||
}
|
}
|
||||||
sesh.streamsM.Unlock()
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// recvDataFromRemote deobfuscate the frame and send it to the appropriate stream buffer
|
||||||
func (sesh *Session) recvDataFromRemote(data []byte) error {
|
func (sesh *Session) recvDataFromRemote(data []byte) error {
|
||||||
frame, err := sesh.Deobfs(data)
|
frame, err := sesh.Deobfs(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Failed to decrypt a frame for session %v: %v", sesh.id, err)
|
return fmt.Errorf("Failed to decrypt a frame for session %v: %v", sesh.id, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
sesh.streamsM.Lock()
|
streamI, existing := sesh.streams.Load(frame.StreamID)
|
||||||
stream, existing := sesh.streams[frame.StreamID]
|
|
||||||
sesh.streamsM.Unlock()
|
|
||||||
if existing {
|
if existing {
|
||||||
|
stream := streamI.(*Stream)
|
||||||
return stream.writeFrame(*frame)
|
return stream.writeFrame(*frame)
|
||||||
} else {
|
} else {
|
||||||
if frame.Closing == 1 {
|
if frame.Closing == 1 {
|
||||||
|
|
@ -200,9 +197,9 @@ func (sesh *Session) recvDataFromRemote(data []byte) error {
|
||||||
// any difference because we only care to send the data from the same stream through the same
|
// any difference because we only care to send the data from the same stream through the same
|
||||||
// TCP connection. The remote may use a different connection to send the same stream than the one the client
|
// TCP connection. The remote may use a different connection to send the same stream than the one the client
|
||||||
// use to send.
|
// use to send.
|
||||||
connId, _ := sesh.sb.assignRandomConn()
|
connId, _, _ := sesh.sb.pickRandConn()
|
||||||
// we ignore the error here. If the switchboard is broken, it will be reflected upon stream.Write
|
// we ignore the error here. If the switchboard is broken, it will be reflected upon stream.Write
|
||||||
stream = makeStream(sesh, frame.StreamID, connId)
|
stream := makeStream(sesh, frame.StreamID, connId)
|
||||||
sesh.acceptCh <- stream
|
sesh.acceptCh <- stream
|
||||||
return stream.writeFrame(*frame)
|
return stream.writeFrame(*frame)
|
||||||
}
|
}
|
||||||
|
|
@ -230,13 +227,13 @@ func (sesh *Session) passiveClose() error {
|
||||||
}
|
}
|
||||||
sesh.acceptCh <- nil
|
sesh.acceptCh <- nil
|
||||||
|
|
||||||
sesh.streamsM.Lock()
|
sesh.streams.Range(func(key, streamI interface{}) bool {
|
||||||
for id, stream := range sesh.streams {
|
stream := streamI.(*Stream)
|
||||||
atomic.StoreUint32(&stream.closed, 1)
|
atomic.StoreUint32(&stream.closed, 1)
|
||||||
_ = stream.recvBuf.Close() // both datagramBuffer and streamBuffer won't return err on Close()
|
_ = stream.recvBuf.Close() // will not block
|
||||||
delete(sesh.streams, id)
|
sesh.streams.Delete(key)
|
||||||
}
|
return true
|
||||||
sesh.streamsM.Unlock()
|
})
|
||||||
|
|
||||||
sesh.sb.closeAll()
|
sesh.sb.closeAll()
|
||||||
log.Debugf("session %v closed gracefully", sesh.id)
|
log.Debugf("session %v closed gracefully", sesh.id)
|
||||||
|
|
@ -259,13 +256,13 @@ func (sesh *Session) Close() error {
|
||||||
}
|
}
|
||||||
sesh.acceptCh <- nil
|
sesh.acceptCh <- nil
|
||||||
|
|
||||||
sesh.streamsM.Lock()
|
sesh.streams.Range(func(key, streamI interface{}) bool {
|
||||||
for id, stream := range sesh.streams {
|
stream := streamI.(*Stream)
|
||||||
atomic.StoreUint32(&stream.closed, 1)
|
atomic.StoreUint32(&stream.closed, 1)
|
||||||
_ = stream.recvBuf.Close() // both datagramBuffer and streamBuffer won't return err on Close()
|
_ = stream.recvBuf.Close() // will not block
|
||||||
delete(sesh.streams, id)
|
sesh.streams.Delete(key)
|
||||||
}
|
return true
|
||||||
sesh.streamsM.Unlock()
|
})
|
||||||
|
|
||||||
pad := genRandomPadding()
|
pad := genRandomPadding()
|
||||||
f := &Frame{
|
f := &Frame{
|
||||||
|
|
@ -295,13 +292,14 @@ func (sesh *Session) IsClosed() bool {
|
||||||
|
|
||||||
func (sesh *Session) timeoutAfter(to time.Duration) {
|
func (sesh *Session) timeoutAfter(to time.Duration) {
|
||||||
time.Sleep(to)
|
time.Sleep(to)
|
||||||
sesh.streamsM.Lock()
|
var count int
|
||||||
if len(sesh.streams) == 0 && !sesh.IsClosed() {
|
sesh.streams.Range(func(_, _ interface{}) bool {
|
||||||
sesh.streamsM.Unlock()
|
count += 1
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
if count == 0 && !sesh.IsClosed() {
|
||||||
sesh.SetTerminalMsg("timeout")
|
sesh.SetTerminalMsg("timeout")
|
||||||
sesh.Close()
|
sesh.Close()
|
||||||
} else {
|
|
||||||
sesh.streamsM.Unlock()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,11 @@ func TestRecvDataFromRemote(t *testing.T) {
|
||||||
sesh := MakeSession(0, seshConfigOrdered)
|
sesh := MakeSession(0, seshConfigOrdered)
|
||||||
n, _ := sesh.Obfs(f, obfsBuf)
|
n, _ := sesh.Obfs(f, obfsBuf)
|
||||||
|
|
||||||
sesh.recvDataFromRemote(obfsBuf[:n])
|
err := sesh.recvDataFromRemote(obfsBuf[:n])
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
stream, err := sesh.Accept()
|
stream, err := sesh.Accept()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
|
|
@ -63,7 +67,11 @@ func TestRecvDataFromRemote(t *testing.T) {
|
||||||
sesh := MakeSession(0, seshConfigOrdered)
|
sesh := MakeSession(0, seshConfigOrdered)
|
||||||
n, _ := sesh.Obfs(f, obfsBuf)
|
n, _ := sesh.Obfs(f, obfsBuf)
|
||||||
|
|
||||||
sesh.recvDataFromRemote(obfsBuf[:n])
|
err := sesh.recvDataFromRemote(obfsBuf[:n])
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
stream, err := sesh.Accept()
|
stream, err := sesh.Accept()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
|
|
@ -86,7 +94,11 @@ func TestRecvDataFromRemote(t *testing.T) {
|
||||||
sesh := MakeSession(0, seshConfigOrdered)
|
sesh := MakeSession(0, seshConfigOrdered)
|
||||||
n, _ := sesh.Obfs(f, obfsBuf)
|
n, _ := sesh.Obfs(f, obfsBuf)
|
||||||
|
|
||||||
sesh.recvDataFromRemote(obfsBuf[:n])
|
err := sesh.recvDataFromRemote(obfsBuf[:n])
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
stream, err := sesh.Accept()
|
stream, err := sesh.Accept()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
|
|
@ -110,7 +122,11 @@ func TestRecvDataFromRemote(t *testing.T) {
|
||||||
sesh := MakeSession(0, seshConfigOrdered)
|
sesh := MakeSession(0, seshConfigOrdered)
|
||||||
n, _ := sesh.Obfs(f, obfsBuf)
|
n, _ := sesh.Obfs(f, obfsBuf)
|
||||||
|
|
||||||
sesh.recvDataFromRemote(obfsBuf[:n])
|
err := sesh.recvDataFromRemote(obfsBuf[:n])
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
stream, err := sesh.Accept()
|
stream, err := sesh.Accept()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
|
|
|
||||||
|
|
@ -157,7 +157,7 @@ func TestStream_Close(t *testing.T) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, ok := sesh.streams[streamID]; ok {
|
if _, ok := sesh.streams.Load(streamID); ok {
|
||||||
t.Error("stream still exists")
|
t.Error("stream still exists")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,8 +25,7 @@ type switchboard struct {
|
||||||
|
|
||||||
*switchboardConfig
|
*switchboardConfig
|
||||||
|
|
||||||
connsM sync.RWMutex
|
conns sync.Map
|
||||||
conns map[uint32]net.Conn
|
|
||||||
nextConnId uint32
|
nextConnId uint32
|
||||||
|
|
||||||
broken uint32
|
broken uint32
|
||||||
|
|
@ -38,7 +37,6 @@ func makeSwitchboard(sesh *Session, config *switchboardConfig) *switchboard {
|
||||||
sb := &switchboard{
|
sb := &switchboard{
|
||||||
session: sesh,
|
session: sesh,
|
||||||
switchboardConfig: config,
|
switchboardConfig: config,
|
||||||
conns: make(map[uint32]net.Conn),
|
|
||||||
}
|
}
|
||||||
return sb
|
return sb
|
||||||
}
|
}
|
||||||
|
|
@ -46,11 +44,19 @@ func makeSwitchboard(sesh *Session, config *switchboardConfig) *switchboard {
|
||||||
var errNilOptimum = errors.New("The optimal connection is nil")
|
var errNilOptimum = errors.New("The optimal connection is nil")
|
||||||
var errBrokenSwitchboard = errors.New("the switchboard is broken")
|
var errBrokenSwitchboard = errors.New("the switchboard is broken")
|
||||||
|
|
||||||
|
func (sb *switchboard) connsCount() int {
|
||||||
|
// count the number of entries in conns
|
||||||
|
var count int
|
||||||
|
sb.conns.Range(func(_, _ interface{}) bool {
|
||||||
|
count += 1
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
return count
|
||||||
|
}
|
||||||
|
|
||||||
func (sb *switchboard) addConn(conn net.Conn) {
|
func (sb *switchboard) addConn(conn net.Conn) {
|
||||||
connId := atomic.AddUint32(&sb.nextConnId, 1) - 1
|
connId := atomic.AddUint32(&sb.nextConnId, 1) - 1
|
||||||
sb.connsM.Lock()
|
sb.conns.Store(connId, conn)
|
||||||
sb.conns[connId] = conn
|
|
||||||
sb.connsM.Unlock()
|
|
||||||
go sb.deplex(connId, conn)
|
go sb.deplex(connId, conn)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -67,69 +73,58 @@ func (sb *switchboard) send(data []byte, connId *uint32) (n int, err error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
sb.Valve.txWait(len(data))
|
sb.Valve.txWait(len(data))
|
||||||
sb.connsM.RLock()
|
connCount := sb.connsCount()
|
||||||
defer sb.connsM.RUnlock()
|
if atomic.LoadUint32(&sb.broken) == 1 || connCount == 0 {
|
||||||
if atomic.LoadUint32(&sb.broken) == 1 || len(sb.conns) == 0 {
|
|
||||||
return 0, errBrokenSwitchboard
|
return 0, errBrokenSwitchboard
|
||||||
}
|
}
|
||||||
|
|
||||||
if sb.strategy == UNIFORM_SPREAD {
|
if sb.strategy == UNIFORM_SPREAD {
|
||||||
r := rand.Intn(len(sb.conns))
|
_, conn, err := sb.pickRandConn()
|
||||||
var c int
|
if err != nil {
|
||||||
for newConnId := range sb.conns {
|
return 0, errBrokenSwitchboard
|
||||||
if r == c {
|
|
||||||
conn, _ := sb.conns[newConnId]
|
|
||||||
return writeAndRegUsage(conn, data)
|
|
||||||
}
|
|
||||||
c++
|
|
||||||
}
|
}
|
||||||
return 0, errBrokenSwitchboard
|
return writeAndRegUsage(conn, data)
|
||||||
} else {
|
} else {
|
||||||
var conn net.Conn
|
connI, ok := sb.conns.Load(*connId)
|
||||||
conn, ok := sb.conns[*connId]
|
conn := connI.(net.Conn)
|
||||||
if ok {
|
if ok {
|
||||||
return writeAndRegUsage(conn, data)
|
return writeAndRegUsage(conn, data)
|
||||||
} else {
|
} else {
|
||||||
// do not call assignRandomConn() here.
|
newConnId, conn, err := sb.pickRandConn()
|
||||||
// we'll have to do connsM.RLock() after we get a new connId from assignRandomConn, in order to
|
if err != nil {
|
||||||
// get the new conn through conns[newConnId]
|
return 0, errBrokenSwitchboard
|
||||||
// however between connsM.RUnlock() in assignRandomConn and our call to connsM.RLock(), things may happen.
|
|
||||||
// in particular if newConnId is removed between the RUnlock and RLock, conns[newConnId] will return
|
|
||||||
// a nil pointer. To prevent this we must get newConnId and the reference to conn itself in one single mutex
|
|
||||||
// protection
|
|
||||||
r := rand.Intn(len(sb.conns))
|
|
||||||
var c int
|
|
||||||
for newConnId := range sb.conns {
|
|
||||||
if r == c {
|
|
||||||
connId = &newConnId
|
|
||||||
conn, _ = sb.conns[newConnId]
|
|
||||||
return writeAndRegUsage(conn, data)
|
|
||||||
}
|
|
||||||
c++
|
|
||||||
}
|
}
|
||||||
return 0, errBrokenSwitchboard
|
connId = &newConnId
|
||||||
|
return writeAndRegUsage(conn, data)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// returns a random connId
|
// returns a random connId
|
||||||
func (sb *switchboard) assignRandomConn() (uint32, error) {
|
func (sb *switchboard) pickRandConn() (uint32, net.Conn, error) {
|
||||||
sb.connsM.RLock()
|
connCount := sb.connsCount()
|
||||||
defer sb.connsM.RUnlock()
|
if atomic.LoadUint32(&sb.broken) == 1 || connCount == 0 {
|
||||||
if atomic.LoadUint32(&sb.broken) == 1 || len(sb.conns) == 0 {
|
return 0, nil, errBrokenSwitchboard
|
||||||
return 0, errBrokenSwitchboard
|
|
||||||
}
|
}
|
||||||
|
|
||||||
r := rand.Intn(len(sb.conns))
|
// there is no guarantee that sb.conns still has the same amount of entries
|
||||||
var c int
|
// between the count loop and the pick loop
|
||||||
for connId := range sb.conns {
|
// so if the r > len(sb.conns) at the point of range call, the last visited element is picked
|
||||||
|
var id uint32
|
||||||
|
var conn net.Conn
|
||||||
|
r := rand.Intn(connCount)
|
||||||
|
sb.conns.Range(func(connIdI, connI interface{}) bool {
|
||||||
|
var c int
|
||||||
if r == c {
|
if r == c {
|
||||||
return connId, nil
|
id = connIdI.(uint32)
|
||||||
|
conn = connI.(net.Conn)
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
c++
|
c++
|
||||||
}
|
return true
|
||||||
return 0, errBrokenSwitchboard
|
})
|
||||||
|
return id, conn, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sb *switchboard) close(terminalMsg string) {
|
func (sb *switchboard) close(terminalMsg string) {
|
||||||
|
|
@ -142,12 +137,12 @@ func (sb *switchboard) close(terminalMsg string) {
|
||||||
|
|
||||||
// actively triggered by session.Close()
|
// actively triggered by session.Close()
|
||||||
func (sb *switchboard) closeAll() {
|
func (sb *switchboard) closeAll() {
|
||||||
sb.connsM.Lock()
|
sb.conns.Range(func(key, connI interface{}) bool {
|
||||||
for key, conn := range sb.conns {
|
conn := connI.(net.Conn)
|
||||||
conn.Close()
|
conn.Close()
|
||||||
delete(sb.conns, key)
|
sb.conns.Delete(key)
|
||||||
}
|
return true
|
||||||
sb.connsM.Unlock()
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// deplex function costantly reads from a TCP connection
|
// deplex function costantly reads from a TCP connection
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ func TestSwitchboard_Send(t *testing.T) {
|
||||||
sesh := MakeSession(0, seshConfig)
|
sesh := MakeSession(0, seshConfig)
|
||||||
hole0 := getHole()
|
hole0 := getHole()
|
||||||
sesh.sb.addConn(hole0)
|
sesh.sb.addConn(hole0)
|
||||||
connId, err := sesh.sb.assignRandomConn()
|
connId, _, err := sesh.sb.pickRandConn()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error("failed to get a random conn", err)
|
t.Error("failed to get a random conn", err)
|
||||||
return
|
return
|
||||||
|
|
@ -36,7 +36,7 @@ func TestSwitchboard_Send(t *testing.T) {
|
||||||
|
|
||||||
hole1 := getHole()
|
hole1 := getHole()
|
||||||
sesh.sb.addConn(hole1)
|
sesh.sb.addConn(hole1)
|
||||||
connId, err = sesh.sb.assignRandomConn()
|
connId, _, err = sesh.sb.pickRandConn()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error("failed to get a random conn", err)
|
t.Error("failed to get a random conn", err)
|
||||||
return
|
return
|
||||||
|
|
@ -47,7 +47,7 @@ func TestSwitchboard_Send(t *testing.T) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
connId, err = sesh.sb.assignRandomConn()
|
connId, _, err = sesh.sb.pickRandConn()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error("failed to get a random conn", err)
|
t.Error("failed to get a random conn", err)
|
||||||
return
|
return
|
||||||
|
|
@ -88,7 +88,7 @@ func BenchmarkSwitchboard_Send(b *testing.B) {
|
||||||
}
|
}
|
||||||
sesh := MakeSession(0, seshConfig)
|
sesh := MakeSession(0, seshConfig)
|
||||||
sesh.sb.addConn(hole)
|
sesh.sb.addConn(hole)
|
||||||
connId, err := sesh.sb.assignRandomConn()
|
connId, _, err := sesh.sb.pickRandConn()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.Error("failed to get a random conn", err)
|
b.Error("failed to get a random conn", err)
|
||||||
return
|
return
|
||||||
|
|
@ -115,7 +115,7 @@ func TestSwitchboard_TxCredit(t *testing.T) {
|
||||||
sesh := MakeSession(0, seshConfig)
|
sesh := MakeSession(0, seshConfig)
|
||||||
hole := newBlackHole()
|
hole := newBlackHole()
|
||||||
sesh.sb.addConn(hole)
|
sesh.sb.addConn(hole)
|
||||||
connId, err := sesh.sb.assignRandomConn()
|
connId, _, err := sesh.sb.pickRandConn()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error("failed to get a random conn", err)
|
t.Error("failed to get a random conn", err)
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue