| 215 | } |
| 216 | |
| 217 | SMTPOperation * SMTPAsyncSession::loginOperation() |
| 218 | { |
| 219 | SMTPLoginOperation * op = new SMTPLoginOperation(); |
| 220 | op->setSession(this); |
| 221 | return (SMTPOperation *) op->autorelease(); |
| 222 | } |
| 223 | |
| 224 | SMTPOperation * SMTPAsyncSession::sendMessageOperation(Data * messageData) |
| 225 | { |
nothing calls this directly
no test coverage detected