| 207 | } |
| 208 | |
| 209 | void SMTPAsyncSession::tryAutomaticDisconnectAfterDelay(void * context) |
| 210 | { |
| 211 | SMTPDisconnectOperation * op = new SMTPDisconnectOperation(); |
| 212 | op->setSession(this); |
| 213 | op->autorelease(); |
| 214 | op->start(); |
| 215 | } |
| 216 | |
| 217 | SMTPOperation * SMTPAsyncSession::loginOperation() |
| 218 | { |
nothing calls this directly
no test coverage detected