/*
* Copyright 2001 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Routines to report various classes of problems. Each report is decorated
* with the current context (file name and line number), if available.
*
* tcpd_warn() reports a problem and proceeds.
*
* tcpd_jump() reports a problem and jumps.
*
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
#ifndef lint
#endif
/* System libraries */
#include <syslog.h>
#include <stdio.h>
#include <setjmp.h>
/* Local stuff */
#include "tcpd.h"
#include "mystdarg.h"
/* tcpd_diag - centralize error reporter */
int severity;
char *tag;
char *format;
{
if (tcpd_context.file)
else
}
/* tcpd_warn - report problem of some sort and proceed */
{
}
/* tcpd_jump - report serious problem and jump */
{
}