diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2003-12-26 20:52:15 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2003-12-26 20:52:15 +0000 |
commit | c4e8f05dc74bc167e19c10fa6246513737c64199 (patch) | |
tree | 5b7973090d5664fae7e69052f4835f2cac2c1a16 /usr.sbin/bgpd/bgpd.h | |
parent | 80546cee49628606ea0a02fa0b72ba955cd3b05f (diff) |
add option 'log updates' to log updates. ok henning@
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 396718f9f53..22f429f11c7 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.39 2003/12/26 20:06:01 jakob Exp $ */ +/* $OpenBSD: bgpd.h,v 1.40 2003/12/26 20:52:14 jakob Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -43,6 +43,8 @@ #define BGPD_FLAG_NO_FIB_UPDATE 0x0001 +#define BGPD_LOG_UPDATES 0x0001 + enum { PROC_MAIN, PROC_SE, @@ -104,6 +106,7 @@ struct bgpd_config { u_int16_t holdtime; u_int16_t min_holdtime; int flags; + int log; struct sockaddr_in listen_addr; struct peer *peers; }; |