Changed integer type for rlm_eap_{ttls,peap} tunnel types to bool where applicable
[freeradius.git] / src / modules / rlm_eap / types / rlm_eap_ttls / eap_ttls.h
index 6491ded..ff9a814 100644 (file)
@@ -31,10 +31,10 @@ typedef struct ttls_tunnel_t {
        VALUE_PAIR      *username;
        VALUE_PAIR      *state;
        VALUE_PAIR      *accept_vps;
-       int             authenticated;
+       bool            authenticated;
        int             default_method;
-       int             copy_request_to_tunnel;
-       int             use_tunneled_reply;
+       bool            copy_request_to_tunnel;
+       bool            use_tunneled_reply;
        char const      *virtual_server;
 } ttls_tunnel_t;