diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-07 08:23:52 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-07 08:23:52 +0000 |
commit | 8ccd0b01f9fc95eb75d92c4d6b5aad0c4baf3e88 (patch) | |
tree | 040700d1d5b450c2aea02f92c64a13b4d4342e95 | |
parent | ddd639f6978f5fe746581facd9fffdf68bbf5967 (diff) | |
download | strongswan-8ccd0b01f9fc95eb75d92c4d6b5aad0c4baf3e88.tar.bz2 strongswan-8ccd0b01f9fc95eb75d92c4d6b5aad0c4baf3e88.tar.xz |
- added status_t NOT_SUPPORTED
-rw-r--r-- | Source/charon/types.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/charon/types.h b/Source/charon/types.h index 3ebc818a6..a65e387e5 100644 --- a/Source/charon/types.h +++ b/Source/charon/types.h @@ -28,7 +28,8 @@ typedef enum status_e { SUCCESS, FAILED, OUT_OF_RES, - ALREADY_DONE + ALREADY_DONE, + NOT_SUPPORTED } status_t; typedef struct timeval timeval_t; |