summaryrefslogtreecommitdiff
path: root/emulator/main.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2013-10-05 09:52:10 -0700
committerMarcel Holtmann <marcel@holtmann.org>2013-10-05 09:52:10 -0700
commitd46acd58a47aa7cde9ca1f5674b71e9dcb6e85a9 (patch)
tree7ea1ed6fadf039a5c5dcbf8ccaf16514f8676f89 /emulator/main.c
parent773361ac7caae10685884bf7b7b29cda7eccc574 (diff)
downloadbluez-d46acd58a47aa7cde9ca1f5674b71e9dcb6e85a9.tar.gz
emulator: Add some extra long option strings
Diffstat (limited to 'emulator/main.c')
-rw-r--r--emulator/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/emulator/main.c b/emulator/main.c
index 7879c79f8..ff44da989 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' },
{ }