diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-06 18:58:56 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-06 18:58:56 +0200 |
commit | 4a3e3f1b9eef457f3f216d2b2a4ccf0a32eb9599 (patch) | |
tree | 67fe25649a0258596bbbe122c19fe3a09ae2a203 /src/ipcpd/ipcp.h | |
parent | 6c799af1b4cf86a32979d98034c560fb976a9caf (diff) | |
download | ouroboros-4a3e3f1b9eef457f3f216d2b2a4ccf0a32eb9599.tar.gz ouroboros-4a3e3f1b9eef457f3f216d2b2a4ccf0a32eb9599.zip |
lib, irmd, ipcpd: Provide the feature to write to logs
Writing output to log files is now enabled by default. Logs are
written to <INSTALL_PREFIX>/var/log/ouroboros, which is created on
install. There is a log file for the irmd and one per IPCP. To still
get (colored) output on stdout, provide the --stdout switch when
starting the irmd.
Fixes #17
Diffstat (limited to 'src/ipcpd/ipcp.h')
-rw-r--r-- | src/ipcpd/ipcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/ipcp.h b/src/ipcpd/ipcp.h index 27c3cf8e..bbf1d1f7 100644 --- a/src/ipcpd/ipcp.h +++ b/src/ipcpd/ipcp.h @@ -50,6 +50,6 @@ struct ipcp { struct ipcp * ipcp_instance_create(); void * ipcp_main_loop(void * o); void * ipcp_sdu_loop(void * o); -int ipcp_arg_check(int argc, char * argv[]); +int ipcp_parse_arg(int argc, char * argv[]); #endif |