| 154 | */ |
| 155 | |
| 156 | void FtpServerDataConnection::addString(const char *str) { |
| 157 | |
| 158 | std::string *newstr; |
| 159 | |
| 160 | newstr=new std::string(str); |
| 161 | (*newstr)+="\r\n"; |
| 162 | |
| 163 | addStream( |
| 164 | new StlStringInputStream( |
| 165 | newstr,true), |
| 166 | true |
| 167 | ); |
| 168 | } |
| 169 | |
| 170 | |
| 171 | /** |
no outgoing calls
no test coverage detected