summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd/session.h
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2004-07-04 03:51:32 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2004-07-04 03:51:32 +0000
commit19dc9d31e9066fe484f3eeae0f4930c1f480e1c8 (patch)
tree9edd1679244ee8f25d85ff6eca3161773559a306 /usr.sbin/bgpd/session.h
parent8a66a965f7ea065f86f9f74241ba8cb602a8fde6 (diff)
2 more file descriptors for each RDE and SE inherited from the parent
we should close
Diffstat (limited to 'usr.sbin/bgpd/session.h')
-rw-r--r--usr.sbin/bgpd/session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/session.h b/usr.sbin/bgpd/session.h
index c11240cb76c..a7e961cb28b 100644
--- a/usr.sbin/bgpd/session.h
+++ b/usr.sbin/bgpd/session.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: session.h,v 1.57 2004/06/20 18:35:12 henning Exp $ */
+/* $OpenBSD: session.h,v 1.58 2004/07/04 03:51:31 henning Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -189,7 +189,7 @@ struct peer *peers;
void session_socket_blockmode(int, enum blockmodes);
int session_main(struct bgpd_config *, struct peer *,
struct network_head *, struct filter_head *,
- struct mrt_head *, int[2], int[2]);
+ struct mrt_head *, int[2], int[2], int[2]);
void bgp_fsm(struct peer *, enum session_events);
struct peer *getpeerbyaddr(struct bgpd_addr *);
int imsg_compose_parent(int, pid_t, void *, u_int16_t);
@@ -214,7 +214,7 @@ void prepare_listeners(struct bgpd_config *);
/* rde.c */
int rde_main(struct bgpd_config *, struct network_head *,
- struct filter_head *, struct mrt_head *, int[2], int[2]);
+ struct filter_head *, struct mrt_head *, int[2], int[2], int[2]);
/* control.c */
int control_listen(void);