| 267 | } |
| 268 | |
| 269 | SMTPOperation * SMTPAsyncSession::disconnectOperation() |
| 270 | { |
| 271 | SMTPDisconnectOperation * op = new SMTPDisconnectOperation(); |
| 272 | op->setSession(this); |
| 273 | return (SMTPOperation *) op->autorelease(); |
| 274 | } |
| 275 | |
| 276 | void SMTPAsyncSession::setConnectionLogger(ConnectionLogger * logger) |
| 277 | { |
nothing calls this directly
no test coverage detected