0f2f3eb395
It's now dealt with by the `server' object. This simplifies things as we only have one list of prompt descriptors and the log_ routines check prompt::logactive to determine whether it should be used for output. o Include the MP socket UpdateSet() result in bundle::UpdateSet(). o Don't select on the tun device unless we're in NETWORK phase or AUTO mode. o Stop the idle timer when we go to DEAD phase. We may have transferred a link and not had a chance to kill it. o Don't fail when trying to unlink our transferred datalink from our descriptor lists just before the transfer. o Add our link descriptor to the write set if we got a short write the last time (physical::out is set). o Log the connection source address when a connection is closed. o Remove descriptor::next field. Descriptor lists are not required any more.
93 lines
3.7 KiB
C
93 lines
3.7 KiB
C
/*-
|
|
* Copyright (c) 1997 Brian Somers <brian@Awfulhak.org>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $Id: log.h,v 1.19 1998/05/21 21:46:30 brian Exp $
|
|
*/
|
|
|
|
#define LogMIN (1)
|
|
#define LogASYNC (1) /* syslog(LOG_INFO, ....) */
|
|
#define LogCCP (2)
|
|
#define LogCHAT (3)
|
|
#define LogCOMMAND (4)
|
|
#define LogCONNECT (5)
|
|
#define LogDEBUG (6) /* syslog(LOG_DEBUG, ....) */
|
|
#define LogHDLC (7)
|
|
#define LogID0 (8)
|
|
#define LogIPCP (9)
|
|
#define LogLCP (10)
|
|
#define LogLQM (11)
|
|
#define LogPHASE (12)
|
|
#define LogTCPIP (13)
|
|
#define LogTIMER (14) /* syslog(LOG_DEBUG, ....) */
|
|
#define LogTUN (15) /* If set, tun%d is output with each message */
|
|
#define LogMAXCONF (15)
|
|
#define LogWARN (16) /* Sent to VarTerm else syslog(LOG_WARNING, ) */
|
|
#define LogERROR (17) /* syslog(LOG_ERR, ....), + sent to VarTerm */
|
|
#define LogALERT (18) /* syslog(LOG_ALERT, ....) */
|
|
#define LogMAX (18)
|
|
|
|
struct mbuf;
|
|
struct cmdargs;
|
|
struct prompt;
|
|
struct server;
|
|
struct datalink;
|
|
|
|
/* The first int arg for all of the following is one of the above values */
|
|
extern const char *log_Name(int);
|
|
extern void log_Keep(int);
|
|
extern void log_KeepLocal(int, u_long *);
|
|
extern void log_Discard(int);
|
|
extern void log_DiscardLocal(int, u_long *);
|
|
extern void log_DiscardAll(void);
|
|
extern void log_DiscardAllLocal(u_long *);
|
|
#define LOG_KEPT_SYSLOG (1) /* Results of log_IsKept() */
|
|
#define LOG_KEPT_LOCAL (2) /* Results of log_IsKept() */
|
|
extern int log_IsKept(int);
|
|
extern int log_IsKeptLocal(int, u_long);
|
|
extern void log_Open(const char *);
|
|
extern void log_SetTun(int);
|
|
extern void log_Close(void);
|
|
#ifdef __GNUC__
|
|
extern void log_Printf(int, const char *,...)
|
|
__attribute__ ((format (printf, 2, 3)));
|
|
#else
|
|
extern void log_Printf(int, const char *,...);
|
|
#endif
|
|
extern void log_DumpBp(int, const char *, const struct mbuf *);
|
|
extern void log_DumpBuff(int, const char *, const u_char *, int);
|
|
extern int log_ShowLevel(struct cmdargs const *);
|
|
extern int log_SetLevel(struct cmdargs const *);
|
|
extern int log_ShowWho(struct cmdargs const *);
|
|
|
|
extern void log_RegisterPrompt(struct prompt *);
|
|
extern void log_UnRegisterPrompt(struct prompt *);
|
|
extern void log_DestroyPrompts(struct server *);
|
|
extern void log_DisplayPrompts(void);
|
|
extern void log_WritePrompts(struct datalink *, const char *, int);
|
|
extern void log_ActivatePrompt(struct prompt *);
|
|
extern void log_DeactivatePrompt(struct prompt *);
|
|
extern void log_SetTtyCommandMode(struct datalink *);
|
|
extern struct prompt *log_PromptList(void);
|