Browse Source

hostapd_cli: Allow PID file to be specified

This can help when running multiple hostapd_cli instances
per interface and need to kill them correspondingly.

Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com>
Mohammed Shafi Shajakhan 9 years ago
parent
commit
b8e5426dad
1 changed files with 5 additions and 2 deletions
  1. 5 2
      hostapd/hostapd_cli.c

+ 5 - 2
hostapd/hostapd_cli.c

@@ -112,7 +112,7 @@ static void usage(void)
 		"\n"
 		"usage: hostapd_cli [-p<path>] [-i<ifname>] [-hvB] "
 		"[-a<path>] \\\n"
-		"                   [-G<ping interval>] [command..]\n"
+		"                   [-P<pid file>] [-G<ping interval>] [command..]\n"
 		"\n"
 		"Options:\n"
 		"   -h           help (show this usage text)\n"
@@ -1317,7 +1317,7 @@ int main(int argc, char *argv[])
 		return -1;
 
 	for (;;) {
-		c = getopt(argc, argv, "a:BhG:i:p:v");
+		c = getopt(argc, argv, "a:BhG:i:p:P:v");
 		if (c < 0)
 			break;
 		switch (c) {
@@ -1343,6 +1343,9 @@ int main(int argc, char *argv[])
 		case 'p':
 			ctrl_iface_dir = optarg;
 			break;
+		case 'P':
+			pid_file = optarg;
+			break;
 		default:
 			usage();
 			return -1;