diff options
author | Simo Sorce <simo@redhat.com> | 2012-04-15 14:48:24 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2012-04-15 15:00:50 -0400 |
commit | 06fed0b0f3e2d1c0f1dfc548ce6f92d87a37a0a0 (patch) | |
tree | cdd7cc3acfe0abaafa265e01e21308503490b99c /proxy/src/gp_log.c | |
parent | 2263252b3a38fda76fd555e367b5fc3d055a9cf7 (diff) | |
download | gss-proxy-06fed0b0f3e2d1c0f1dfc548ce6f92d87a37a0a0.tar.gz gss-proxy-06fed0b0f3e2d1c0f1dfc548ce6f92d87a37a0a0.tar.xz gss-proxy-06fed0b0f3e2d1c0f1dfc548ce6f92d87a37a0a0.zip |
Add logging helpers
Diffstat (limited to 'proxy/src/gp_log.c')
-rw-r--r-- | proxy/src/gp_log.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/proxy/src/gp_log.c b/proxy/src/gp_log.c new file mode 100644 index 0000000..31006f6 --- /dev/null +++ b/proxy/src/gp_log.c @@ -0,0 +1,33 @@ +/* + GSS-PROXY + + Copyright (C) 2012 Red Hat, Inc. + Copyright (C) 2012 Simo Sorce <simo.sorce@redhat.com> + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. +*/ + +#include "gp_log.h" + +void gp_logging_init(void) +{ + openlog("gssproxy", + LOG_CONS|LOG_NDELAY|LOG_NOWAIT|LOG_PERROR|LOG_PID, + LOG_AUTHPRIV); +} |