| 260 | } |
| 261 | |
| 262 | SMTPOperation * SMTPAsyncSession::noopOperation() |
| 263 | { |
| 264 | SMTPNoopOperation * op = new SMTPNoopOperation(); |
| 265 | op->setSession(this); |
| 266 | return (SMTPOperation *) op->autorelease(); |
| 267 | } |
| 268 | |
| 269 | SMTPOperation * SMTPAsyncSession::disconnectOperation() |
| 270 | { |
nothing calls this directly
no test coverage detected