Browse Source

Expanded Documentation of option log-srtp-keys

pull/653/head
Tor Petterson 7 years ago
parent
commit
f71f66f60b
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      daemon/main.c

+ 1
- 1
README.md View File

@ -233,7 +233,7 @@ option and which are reproduced below:
--priority=INT Thread scheduling priority
--idle-scheduling=default|... Idle thread scheduling policy
--idle-priority=INT Idle thread scheduling priority
--log-srtp-keys Write SRTP keys to log
--log-srtp-keys Write SRTP keys to error log instead of debug log
Most of these options are indeed optional, with two exceptions. It's mandatory to specify at least one local
IP address through `--interface`, and at least one of the `--listen-...` options must be given.


+ 1
- 1
daemon/main.c View File

@ -362,7 +362,7 @@ static void options(int *argc, char ***argv) {
{ "priority", 0, 0, G_OPTION_ARG_INT, &rtpe_config.priority, "Thread scheduling priority", "INT" },
{ "idle-scheduling",0, 0,G_OPTION_ARG_STRING, &rtpe_config.idle_scheduling,"Idle thread scheduling policy", "default|none|fifo|rr|other|batch|idle" },
{ "idle-priority",0, 0, G_OPTION_ARG_INT, &rtpe_config.idle_priority,"Idle thread scheduling priority", "INT" },
{ "log-srtp-keys",'F', 0, G_OPTION_ARG_NONE, &rtpe_config.log_keys, "Log SRTP keys", NULL },
{ "log-srtp-keys",'F', 0, G_OPTION_ARG_NONE, &rtpe_config.log_keys, "Log SRTP keys to error log", NULL },
{ NULL, }
};


Loading…
Cancel
Save