| 72 | } |
| 73 | |
| 74 | NNTPAsyncSession::NNTPAsyncSession() |
| 75 | { |
| 76 | mSession = new NNTPSession(); |
| 77 | mQueue = new OperationQueue(); |
| 78 | mQueueCallback = new NNTPOperationQueueCallback(this); |
| 79 | mQueue->setCallback(mQueueCallback); |
| 80 | mConnectionLogger = NULL; |
| 81 | pthread_mutex_init(&mConnectionLoggerLock, NULL); |
| 82 | mInternalLogger = new NNTPConnectionLogger(this); |
| 83 | mSession->setConnectionLogger(mInternalLogger); |
| 84 | mOperationQueueCallback = NULL; |
| 85 | } |
| 86 | |
| 87 | NNTPAsyncSession::~NNTPAsyncSession() |
| 88 | { |
nothing calls this directly
no test coverage detected