| 62 | } |
| 63 | |
| 64 | SMTPAsyncSession::SMTPAsyncSession() |
| 65 | { |
| 66 | mSession = new SMTPSession(); |
| 67 | mQueue = new OperationQueue(); |
| 68 | mQueueCallback = new SMTPOperationQueueCallback(this); |
| 69 | mQueue->setCallback(mQueueCallback); |
| 70 | mConnectionLogger = NULL; |
| 71 | pthread_mutex_init(&mConnectionLoggerLock, NULL); |
| 72 | mInternalLogger = new SMTPConnectionLogger(this); |
| 73 | mSession->setConnectionLogger(mInternalLogger); |
| 74 | mOperationQueueCallback = NULL; |
| 75 | } |
| 76 | |
| 77 | SMTPAsyncSession::~SMTPAsyncSession() |
| 78 | { |
nothing calls this directly
no test coverage detected