Radcli library 1.3.1
A simple radius library
Loading...
Searching...
No Matches
log.c
1/*
2 * Copyright (C) 1995,1996,1997 Lars Fenneberg
3 *
4 * See the file COPYRIGHT for the respective terms and conditions.
5 * If the file is missing contact me at lf@elemental.net
6 * and I'll send you a copy.
7 *
8 */
9
10#include <config.h>
11#include <includes.h>
12#include <radcli/radcli.h>
13
14unsigned int radcli_debug = 0;
15
16void rc_setdebug(int debug)
17{
18 radcli_debug = debug;
19}
20
36void rc_openlog(char const *ident)
37{
38#ifndef _MSC_VER /* TODO: Fix me */
39 openlog(ident, LOG_PID, RC_LOG_FACILITY);
40#endif
41}
42
void rc_openlog(char const *ident)
Definition: log.c:36