| 238 | } |
| 239 | |
| 240 | NNTPPostOperation * NNTPAsyncSession::postMessageOperation(Data * messageData) |
| 241 | { |
| 242 | NNTPPostOperation * op = new NNTPPostOperation(); |
| 243 | op->setSession(this); |
| 244 | op->setMessageData(messageData); |
| 245 | op->autorelease(); |
| 246 | return op; |
| 247 | } |
| 248 | |
| 249 | NNTPPostOperation * NNTPAsyncSession::postMessageOperation(String * filename) |
| 250 | { |
nothing calls this directly
no test coverage detected