X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Ftincd.c;h=27cd01ef05352a7540055334b83a86013afd61e7;hp=257f9e49f05d5495fdc2291439e607611413486e;hb=41c10c5a966000531099c79d6006429253ff8fd6;hpb=41a05f59ba2c3eb5caab555f096ed1b9fbe69ee3 diff --git a/src/tincd.c b/src/tincd.c index 257f9e49..27cd01ef 100644 --- a/src/tincd.c +++ b/src/tincd.c @@ -580,6 +580,35 @@ int main2(int argc, char **argv) if(!setup_network()) goto end; + /* Change process priority */ + + char *priority = 0; + + if(get_config_string(lookup_config(config_tree, "ProcessPriority"), &priority)) { + if(!strcasecmp(priority, "Normal")) { +#ifdef HAVE_MINGW + SetPriorityClass(GetCurrentProcess(), NORMAL_PRIORITY_CLASS); +#else + nice(0); +#endif + } else if(!strcasecmp(priority, "Low")) { +#ifdef HAVE_MINGW + SetPriorityClass(GetCurrentProcess(), BELOW_NORMAL_PRIORITY_CLASS); +#else + nice(10); +#endif + } else if(!strcasecmp(priority, "High")) { +#ifdef HAVE_MINGW + SetPriorityClass(GetCurrentProcess(), HIGH_PRIORITY_CLASS); +#else + nice(-10); +#endif + } else { + logger(LOG_ERR, _("Invalid priority `%s`!"), priority); + goto end; + } + } + /* drop privileges */ if (!drop_privs()) goto end;