summaryrefslogtreecommitdiffstats
path: root/bfdd
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2022-05-04 13:44:26 +0200
committerGitHub <noreply@github.com>2022-05-04 13:44:26 +0200
commit59ba0033469b4bff64866b464b82784e710be93b (patch)
tree90517ed506f5c10dd660617241419518fb2b8640 /bfdd
parentMerge pull request #11142 from patrasar/pim_register_show_fix (diff)
parentlib: change FRR interface name length definition (diff)
downloadfrr-59ba0033469b4bff64866b464b82784e710be93b.tar.xz
frr-59ba0033469b4bff64866b464b82784e710be93b.zip
Merge pull request #11137 from opensourcerouting/if-name-len-fixes
*: standardize interface name maximum length
Diffstat (limited to 'bfdd')
-rw-r--r--bfdd/bfd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfdd/bfd.h b/bfdd/bfd.h
index 2e3119064..6aa9e0058 100644
--- a/bfdd/bfd.h
+++ b/bfdd/bfd.h
@@ -190,8 +190,8 @@ struct bfd_key {
uint16_t mhop;
struct in6_addr peer;
struct in6_addr local;
- char ifname[MAXNAMELEN];
- char vrfname[MAXNAMELEN];
+ char ifname[INTERFACE_NAMSIZ];
+ char vrfname[VRF_NAMSIZ];
} __attribute__((packed));
struct bfd_session_stats {