aboutsummaryrefslogtreecommitdiffstats
path: root/package/hostapd/patches/620-scan_wait.patch
blob: ac2d445a4369efbbb964aedd418b7dfe48188ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
--- a/hostapd/main.c
+++ b/hostapd/main.c
@@ -33,6 +33,8 @@
 extern int wpa_debug_level;
 extern int wpa_debug_show_keys;
 extern int wpa_debug_timestamp;
+static int daemonize = 0;
+static char *pid_file = NULL;
 
 extern struct wpa_driver_ops *wpa_drivers[];
 
@@ -147,6 +149,14 @@ static void hostapd_logger_cb(void *ctx,
 }
 #endif /* CONFIG_NO_HOSTAPD_LOGGER */
 
+static void hostapd_setup_complete_cb(void *ctx)
+{
+	if (daemonize && os_daemonize(pid_file)) {
+		perror("daemon");
+		return;
+	}
+	daemonize = 0;
+}
 
 /**
  * hostapd_init - Allocate and initialize per-interface data
@@ -190,6 +200,7 @@ static struct hostapd_iface * hostapd_in
 		if (hapd == NULL)
 			goto fail;
 		hapd->msg_ctx = hapd;
+		hapd->setup_complete_cb = hostapd_setup_complete_cb;
 	}
 
 	return hapd_iface;
@@ -429,8 +440,6 @@ static void hostapd_global_deinit(const 
 #endif /* CONFIG_NATIVE_WINDOWS */
 
 	eap_server_unregister_methods();
-
-	os_daemonize_terminate(pid_file);
 }
 
 
@@ -456,11 +465,6 @@ static int hostapd_global_run(struct hap
 	}
 #endif /* EAP_SERVER_TNC */
 
-	if (daemonize && os_daemonize(pid_file)) {
-		perror("daemon");
-		return -1;
-	}
-
 	eloop_run();
 
 	return 0;
@@ -564,8 +568,7 @@ int main(int argc, char *argv[])
 	struct hapd_interfaces interfaces;
 	int ret = 1;
 	size_t i;
-	int c, debug = 0, daemonize = 0;
-	char *pid_file = NULL;
+	int c, debug = 0;
 	const char *log_file = NULL;
 	const char *entropy_file = NULL;