targets/remote: Implement experimental connection caching

Closes #235.
This commit is contained in:
fox.cpp 2020-06-13 21:18:20 +03:00
parent aa9e3c6a40
commit 7f7393e480
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
7 changed files with 349 additions and 61 deletions

View file

@ -28,6 +28,8 @@ type SMTPMessage struct {
type SMTPBackend struct {
Messages []*SMTPMessage
MailFromCounter int
SessionCounter int
SourceEndpoints map[string]struct{}
AuthErr error
MailErr error
@ -40,6 +42,11 @@ func (be *SMTPBackend) Login(state *smtp.ConnectionState, username, password str
if be.AuthErr != nil {
return nil, be.AuthErr
}
be.SessionCounter++
if be.SourceEndpoints == nil {
be.SourceEndpoints = make(map[string]struct{})
}
be.SourceEndpoints[state.RemoteAddr.String()] = struct{}{}
return &session{
backend: be,
user: username,
@ -49,6 +56,11 @@ func (be *SMTPBackend) Login(state *smtp.ConnectionState, username, password str
}
func (be *SMTPBackend) AnonymousLogin(state *smtp.ConnectionState) (smtp.Session, error) {
be.SessionCounter++
if be.SourceEndpoints == nil {
be.SourceEndpoints = make(map[string]struct{})
}
be.SourceEndpoints[state.RemoteAddr.String()] = struct{}{}
return &session{backend: be, state: state}, nil
}