Move responsibility for configuring max queue size into switch

This commit is contained in:
Neil Alexander 2019-08-28 19:39:23 +01:00
parent fc9a1c6c31
commit aa0770546e
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
2 changed files with 7 additions and 9 deletions

View file

@ -193,7 +193,13 @@ func (t *switchTable) init(core *Core) {
t.table.Store(lookupTable{})
t.drop = make(map[crypto.SigPubKey]int64)
phony.Block(t, func() {
t.queues.totalMaxSize = SwitchQueueTotalMinSize
core.config.Mutex.RLock()
if core.config.Current.SwitchOptions.MaxTotalQueueSize > SwitchQueueTotalMinSize {
t.queues.totalMaxSize = core.config.Current.SwitchOptions.MaxTotalQueueSize
} else {
t.queues.totalMaxSize = SwitchQueueTotalMinSize
}
core.config.Mutex.RUnlock()
t.queues.bufs = make(map[string]switch_buffer)
t.idle = make(map[switchPort]time.Time)
})