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 2011-12-09 15:49:07 +01:00
parent 9ce5d0c0e8
commit 1390daae15
1 changed files with 5 additions and 0 deletions

5
src/libstrongswan/utils.h Normal file → Executable file
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,
};
/**