From 1390daae15b58848b75d3d7f2d44fc054f3da882 Mon Sep 17 00:00:00 2001 From: Clavister OpenSource Date: Fri, 9 Dec 2011 15:49:07 +0100 Subject: [PATCH] Added status code to status_t New status_t enum to allow packets to be sent to peer in task_manager->process --- src/libstrongswan/utils.h | 5 +++++ 1 file changed, 5 insertions(+) mode change 100644 => 100755 src/libstrongswan/utils.h diff --git a/src/libstrongswan/utils.h b/src/libstrongswan/utils.h old mode 100644 new mode 100755 index e5e4a10c0..826477c7f --- a/src/libstrongswan/utils.h +++ b/src/libstrongswan/utils.h @@ -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, }; /**