Diff between 773361ac7caae10685884bf7b7b29cda7eccc574 and d46acd58a47aa7cde9ca1f5674b71e9dcb6e85a9

Changed Files

File Additions Deletions Status
emulator/main.c +5 -1 modified

Full Patch

diff --git a/emulator/main.c b/emulator/main.c
index 7879c79..ff44da9 100644
--- a/emulator/main.c
+++ b/emulator/main.c
@@ -60,7 +60,11 @@ static void usage(void)
 }
 
 static const struct option main_options[] = {
-	{ "local",   optional_argument,	NULL, 'l' },
+	{ "server",  no_argument,       NULL, 's' },
+	{ "local",   optional_argument, NULL, 'l' },
+	{ "le",      no_argument,       NULL, 'L' },
+	{ "bredr",   no_argument,       NULL, 'B' },
+	{ "amp",     no_argument,       NULL, 'A' },
 	{ "version", no_argument,	NULL, 'v' },
 	{ "help",    no_argument,	NULL, 'h' },
 	{ }