diff options
author | 2019-05-03 15:20:29 +0000 | |
---|---|---|
committer | 2019-05-03 15:20:29 +0000 | |
commit | 724e7ad1583a0064145c0db018b21ca33baff6ab (patch) | |
tree | 6af025ec6d82c7bf0d6dfd2af2844d43bd452b4c | |
parent | Rename -c to -s since the correct term is snapshot, not current. Also (diff) | |
download | wireguard-openbsd-724e7ad1583a0064145c0db018b21ca33baff6ab.tar.xz wireguard-openbsd-724e7ad1583a0064145c0db018b21ca33baff6ab.zip |
Bump SET_NAME_LEN to 128 since arouteserver produces names that are more
than 64 chars long.
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index c18247df753..d96e1ddace1 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.379 2019/04/25 12:12:16 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.380 2019/05/03 15:20:29 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -43,7 +43,7 @@ #define TCP_MD5_KEY_LEN 80 #define IPSEC_ENC_KEY_LEN 32 #define IPSEC_AUTH_KEY_LEN 20 -#define SET_NAME_LEN 64 +#define SET_NAME_LEN 128 #define MAX_PKTSIZE 4096 #define MIN_HOLDTIME 3 |