diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2012-09-18 09:45:52 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2012-09-18 09:45:52 +0000 |
commit | 8e3a0bd30351f06e84bde4a5f627c11842819e1f (patch) | |
tree | b0e71ce92c1e4d84d28733ba8ec0f33df5a23bdc /usr.sbin/bgpd/bgpd.h | |
parent | 3ca5cf3cbd3e1c182a2e36bcd033ef9bf7540b6d (diff) |
Only allow one reload request at a time in bgpd. Needed for further work.
OK sthen@, benno@, henning@
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 85736efe262..a188907850d 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.271 2012/09/12 05:56:22 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.272 2012/09/18 09:45:51 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -417,6 +417,7 @@ enum ctl_results { CTL_RES_DENIED, CTL_RES_NOCAP, CTL_RES_PARSE_ERROR, + CTL_RES_PENDING, CTL_RES_NOMEM }; |