mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
Generalize message flow restrictions
Set of flow restrictions is represented as a "limits" module instance that can be either created inline via "limits" directive in some modules (including "remote" target and "smtp" endpoint) or defined globally and referenced in configuration of modules mentioned above. This permits a variety of use cases, including shared and separate counters for various endpoints and also "modules group" style sharing described in #195.
This commit is contained in:
parent
100ed13784
commit
c3ebbb05a0
13 changed files with 480 additions and 149 deletions
17
internal/limits/limiters/limiters.go
Normal file
17
internal/limits/limiters/limiters.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
// Package limiters provides a set of wrappers intended to restrict the amount
|
||||
// of resources consumed by the server.
|
||||
package limiters
|
||||
|
||||
import "context"
|
||||
|
||||
// The L interface represents a blocking limiter that has some upper bound of
|
||||
// resource use and blocks when it is exceeded until enough resources are
|
||||
// freed.
|
||||
type L interface {
|
||||
Take() bool
|
||||
TakeContext(context.Context) error
|
||||
Release()
|
||||
|
||||
// Close frees any resources used internally by Limiter for book-keeping.
|
||||
Close()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue