Adjustments for handling binary protocols and multiple receive terminators

r2268 | dcl | 2008-01-15 12:19:37 +1100 (Tue, 15 Jan 2008) | 2 lines
This commit is contained in:
Douglas Clowes
2008-01-15 12:19:37 +11:00
parent 1250d902e7
commit fe2eabfc33
2 changed files with 56 additions and 29 deletions

View File

@@ -91,11 +91,12 @@ int AsyncUnitSendTxn(pAsyncUnit unit,
* \param cmd_len length of data in command
* \param responseHandler function to handle the response
* \param context to be used by handler function
* \param resp_len maximum length to be allowed for response
* \param resp_len [in] maximum length to be allowed for response
* [out] actual length returned
*/
int AsyncUnitTransact(pAsyncUnit unit,
const char* command, int cmd_len,
char* response, int rsp_len);
char* response, int *rsp_len);
/** \brief write to the AsyncQueue file descriptor
*