Use asl for logging ftpd wtmp messages.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22951 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -58,6 +58,9 @@ RCSID("$Id$");
|
|||||||
#ifdef HAVE_UTMPX_H
|
#ifdef HAVE_UTMPX_H
|
||||||
#include <utmpx.h>
|
#include <utmpx.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_ASL_H
|
||||||
|
#include <asl.h>
|
||||||
|
#endif
|
||||||
#include <roken.h>
|
#include <roken.h>
|
||||||
#include "extern.h"
|
#include "extern.h"
|
||||||
|
|
||||||
@@ -69,8 +72,32 @@ RCSID("$Id$");
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
#ifdef HAVE_ASL_H
|
||||||
ftpd_logwtmp(char *line, char *name, char *host)
|
static void
|
||||||
|
ftpd_logwtmp_asl(char *line, char *name, char *host)
|
||||||
|
{
|
||||||
|
static aslmsg m = NULL;
|
||||||
|
static int init = 0;
|
||||||
|
|
||||||
|
if (!init) {
|
||||||
|
init = 1;
|
||||||
|
m = asl_new(ASL_TYPE_MSG);
|
||||||
|
if (m == NULL)
|
||||||
|
return;
|
||||||
|
asl_set(m, ASL_KEY_FACILITY, "org.h5l.ftpd");
|
||||||
|
}
|
||||||
|
if (m)
|
||||||
|
asl_log(NULL, m, ASL_LEVEL_NOTICE,
|
||||||
|
"host %s/%s user %s%sconnected pid %d",
|
||||||
|
host, line, name, name[0] ? " " : "dis", (int)getpid());
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAVE_ASL_H
|
||||||
|
|
||||||
|
static void
|
||||||
|
ftpd_logwtmp_wtmp(char *line, char *name, char *host)
|
||||||
{
|
{
|
||||||
static int init = 0;
|
static int init = 0;
|
||||||
static int fd;
|
static int fd;
|
||||||
@@ -136,3 +163,15 @@ ftpd_logwtmp(char *line, char *name, char *host)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* !HAVE_ASL_H */
|
||||||
|
|
||||||
|
void
|
||||||
|
ftpd_logwtmp(char *line, char *name, char *host)
|
||||||
|
{
|
||||||
|
#ifdef HAVE_ASL_H
|
||||||
|
ftpd_logwtmp_asl(line, name, host);
|
||||||
|
#else
|
||||||
|
ftpd_logwtmp_wtmp(line, name, host);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user