diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-22 20:59:18 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-22 20:59:18 +0000 |
commit | 7249f4acc56f234e1713b79ac0c975b9c5c6b1cc (patch) | |
tree | 48fb325b25e89271e95f974e07861f51f0591495 /usr.sbin/bgpd/session.h | |
parent | 8105491e021791b682e4b1edf19b57fe6223d010 (diff) |
make log_peer_* take a struct peer_config instead of the session engine
specific struct peer, and move their prototypes to bgpd.h to make it available
to whole bgpd
ok claudio@
Diffstat (limited to 'usr.sbin/bgpd/session.h')
-rw-r--r-- | usr.sbin/bgpd/session.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/session.h b/usr.sbin/bgpd/session.h index 3d245aa75f7..78bd04e78be 100644 --- a/usr.sbin/bgpd/session.h +++ b/usr.sbin/bgpd/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.21 2004/01/22 19:07:34 henning Exp $ */ +/* $OpenBSD: session.h,v 1.22 2004/01/22 20:59:17 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -162,8 +162,6 @@ struct peer *getpeerbyip(in_addr_t); int imsg_compose_parent(int, pid_t, void *, u_int16_t); /* log.c */ -void log_peer_warn(const struct peer *, const char *, ...); -void log_peer_warnx(const struct peer *, const char *, ...); void log_statechange(const struct peer *, enum session_state, enum session_events); void log_notification(const struct peer *, u_int8_t, u_int8_t, |