diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2019-05-03 15:20:30 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2019-05-03 15:20:30 +0000 |
commit | 7c9585a6ad9dc604c850a663545616feffc92078 (patch) | |
tree | b9106dc9a3a99872781860ca5c9c5773610346cf /usr.sbin/bgpd | |
parent | 42d971ee54d5aa5d1307eb8ce1254e1f8dd074df (diff) |
Bump SET_NAME_LEN to 128 since arouteserver produces names that are more
than 64 chars long.
Diffstat (limited to 'usr.sbin/bgpd')
-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 |