]> 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 1ee18432849a0579adfe16667d7c9895ed08e0d2..411b9eafa264335a7022bd3a34b0995f5500ded9 100644 (file)
@@ -25,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
+);