SessionPool is the struct type of session pool.
| 39 | |
| 40 | // SessionPool is the struct type of session pool. |
| 41 | type SessionPool struct { |
| 42 | sync.RWMutex |
| 43 | sessions map[proto.NodeID]*Session |
| 44 | } |
| 45 | |
| 46 | var ( |
| 47 | defaultPool = &SessionPool{ |
nothing calls this directly
no outgoing calls
no test coverage detected