added options for virtual IP, UDP encapsulation, IPComp

proper handling of libstrongswan/glib TRUE/FALSE conflict
This commit is contained in:
Martin Willi
2008-07-31 14:32:11 +00:00
parent 5e9346ed92
commit 092a9b88ad
3 changed files with 36 additions and 13 deletions
+6 -2
View File
@@ -108,8 +108,12 @@
* General purpose boolean type.
*/
typedef int bool;
#define FALSE 0
#define TRUE 1
#ifndef FALSE
# define FALSE 0
#endif /* FALSE */
#ifndef TRUE
# define TRUE 1
#endif /* TRUE */
typedef enum status_t status_t;