| 264 | |
| 265 | |
| 266 | void HTMLForm::write(std::ostream& ostr, const std::string& boundary) |
| 267 | { |
| 268 | if (_encoding == ENCODING_URL) |
| 269 | { |
| 270 | writeUrl(ostr); |
| 271 | } |
| 272 | else |
| 273 | { |
| 274 | _boundary = boundary; |
| 275 | writeMultipart(ostr); |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | |
| 280 | void HTMLForm::write(std::ostream& ostr) |
no outgoing calls
no test coverage detected