MCPcopy Create free account
hub / github.com/MailCore/mailcore2 / noop

Method noop

src/core/pop/MCPOPSession.cpp:581–599  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

579}
580
581void POPSession::noop(ErrorCode * pError)
582{
583 int r;
584
585 if (mPop == NULL)
586 return;
587
588 MCLog("connect");
589 loginIfNeeded(pError);
590 if (* pError != ErrorNone) {
591 return;
592 }
593 if (mPop->pop3_stream != NULL) {
594 r = mailpop3_noop(mPop);
595 if ((r == MAILPOP3_ERROR_STREAM) || (r == MAILPOP3_ERROR_BAD_STATE)) {
596 * pError = ErrorConnection;
597 }
598 }
599}
600
601void POPSession::lockConnectionLogger()
602{

Callers 3

mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected