Skip to content
Snippets Groups Projects
Commit 12089093 authored by dnsadmin's avatar dnsadmin
Browse files

Monitorozás nem lesz (#8)

Akit érdekel, nézzen logot!
parent b0c255f8
Branches
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
enum command
{
MONITOR, STATISTICS, KILL
STATISTICS, KILL
};
/**
......@@ -27,7 +27,6 @@ enum command
const char *get_readable_command(command c) {
switch(c)
{
case MONITOR: return "monitor";
case STATISTICS: return "statistics";
case KILL: return "kill";
default: return "";
......
......@@ -40,9 +40,6 @@ int main(int argc, char *argv[])
case 'd':
run_as_daemon = true;
break;
case 'm':
command_list.push_back(MONITOR);
break;
case 's':
command_list.push_back(STATISTICS);
break;
......@@ -176,7 +173,6 @@ For more info look at the man page.
Options:
-d Run as daemon
-m Monitor daemon
-s Statistics from daemon
-k Kill daemon
-v Verbose
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment