- implemented multi-line response in AsconStdHandler

This commit is contained in:
zolliker
2009-11-10 07:47:32 +00:00
parent b136700f39
commit b8a0936b99
3 changed files with 75 additions and 34 deletions

View File

@ -84,4 +84,13 @@ char *ConcatArgs(int argc, char *argv[]);
*/
double DoubleTime(void);
/** \brief emit an error message. The state switches to AsconFailed.
* \param a the connection
* \param msg, a message to be emitted
* \param errorno, for user messages, this should be 0. After
* detection of a system error, eerno may be placed as argument
* for adding strerror(errno) to the message.
*/
void AsconError(Ascon *a, char *msg, int errorno);
#endif