mirror of https://github.com/BOINC/boinc.git
- client: add --suppress_net_info cmdline option
This commit is contained in:
parent
a63ebbc13e
commit
951f16d960
|
@ -92,6 +92,7 @@ static void print_options(char* prog) {
|
|||
" --show_projects show attached projects\n"
|
||||
" --skip_cpu_benchmarks don't run CPU benchmarks\n"
|
||||
" --start_delay X delay starting apps for X secs\n"
|
||||
" --suppress_net_info don't send network addrs to server\n"
|
||||
" --unsigned_apps_ok allow unsigned apps (for testing)\n"
|
||||
" --update_prefs <URL> contact a project to update preferences\n"
|
||||
" --version show version info\n"
|
||||
|
@ -238,6 +239,8 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
|
|||
} else if (ARG(start_delay)) {
|
||||
if (i == argc-1) show_options = true;
|
||||
else config.start_delay = atof(argv[++i]);
|
||||
} else if (ARG(suppress_net_info)) {
|
||||
config.suppress_net_info = true;
|
||||
} else if (ARG(unsigned_apps_ok)) {
|
||||
config.unsigned_apps_ok = true;
|
||||
} else if (ARG(update_prefs)) {
|
||||
|
|
|
@ -23,7 +23,7 @@ $sensing = array(
|
|||
),
|
||||
array(
|
||||
"Radioactive@Home",
|
||||
"http://radioactiveathome.org/",
|
||||
"http://radioactiveathome.org/boinc/",
|
||||
tra("BOINC Poland Foundation"),
|
||||
tra("Environmental research"),
|
||||
tra("This project is creating a free and continuously updated map of radiation levels by using sensors connected to volunteers' computers. You must buy a sensor to participate."),
|
||||
|
|
Loading…
Reference in New Issue