]> git.ipfire.org Git - thirdparty/hostap.git/blobdiff - hostapd/hostapd.eap_user_sqlite
tests: Unsupported WNM Action
[thirdparty/hostap.git] / hostapd / hostapd.eap_user_sqlite
index 826db349cfc2a1f23612efbd75458808ed02592e..411b9eafa264335a7022bd3a34b0995f5500ded9 100644 (file)
@@ -3,7 +3,8 @@ CREATE TABLE users(
        methods TEXT,
        password TEXT,
        remediation TEXT,
-       phase2 INTEGER
+       phase2 INTEGER,
+       t_c_timestamp INTEGER
 );
 
 CREATE TABLE wildcards(
@@ -24,3 +25,18 @@ CREATE TABLE authlog(
        username TEXT,
        note TEXT
 );
+
+CREATE TABLE pending_tc(
+       mac_addr TEXT PRIMARY KEY,
+       identity TEXT
+);
+
+CREATE TABLE current_sessions(
+       mac_addr TEXT PRIMARY KEY,
+       identity TEXT,
+       start_time TEXT,
+       nas TEXT,
+       hs20_t_c_filtering BOOLEAN,
+       waiting_coa_ack BOOLEAN,
+       coa_ack_received BOOLEAN
+);