check: Add missing context.Context to Check skeleton

This commit is contained in:
fox.cpp 2021-07-09 20:01:11 +03:00
parent 7c2afde847
commit 0121bb887b
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -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{}
}