Added status code to status_t

New status_t enum to allow packets to be sent to peer in task_manager->process
This commit is contained in:
Clavister OpenSource
2012-03-20 17:31:14 +01:00
parent 9ce5d0c0e8
commit 1390daae15
Regular → Executable
+5
View File
@@ -299,6 +299,11 @@ enum status_t {
* Another call to the method is required.
*/
NEED_MORE,
/**
* Call failed, send error to other side.
*/
FAILED_SEND_ERROR,
};
/**