mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
check: Add missing context.Context to Check skeleton
This commit is contained in:
parent
7c2afde847
commit
0121bb887b
1 changed files with 5 additions and 5 deletions
|
@ -65,7 +65,7 @@ type state struct {
|
|||
log log.Logger
|
||||
}
|
||||
|
||||
func (c *Check) CheckStateForMsg(msgMeta *module.MsgMetadata) (module.CheckState, error) {
|
||||
func (c *Check) CheckStateForMsg(ctx context.Context, msgMeta *module.MsgMetadata) (module.CheckState, error) {
|
||||
return &state{
|
||||
c: c,
|
||||
msgMeta: msgMeta,
|
||||
|
@ -73,19 +73,19 @@ func (c *Check) CheckStateForMsg(msgMeta *module.MsgMetadata) (module.CheckState
|
|||
}, nil
|
||||
}
|
||||
|
||||
func (s *state) CheckConnection() module.CheckResult {
|
||||
func (s *state) CheckConnection(ctx context.Context) module.CheckResult {
|
||||
return module.CheckResult{}
|
||||
}
|
||||
|
||||
func (s *state) CheckSender(addr string) module.CheckResult {
|
||||
func (s *state) CheckSender(ctx context.Context, addr string) module.CheckResult {
|
||||
return module.CheckResult{}
|
||||
}
|
||||
|
||||
func (s *state) CheckRcpt(addr string) module.CheckResult {
|
||||
func (s *state) CheckRcpt(ctx context.Context, addr string) module.CheckResult {
|
||||
return module.CheckResult{}
|
||||
}
|
||||
|
||||
func (s *state) CheckBody(hdr textproto.Header, body buffer.Buffer) module.CheckResult {
|
||||
func (s *state) CheckBody(ctx context.Context, hdr textproto.Header, body buffer.Buffer) module.CheckResult {
|
||||
return module.CheckResult{}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue