Merge pull request #15264 from opensourcerouting/fix/memory_optimization

bgpd: Optimize memory for rd_ip struct
This commit is contained in:
Donald Sharp 2024-02-01 14:55:18 -05:00 committed by GitHub
commit 62443d7f66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,8 +41,8 @@ struct rd_as {
struct rd_ip {
uint16_t type;
struct in_addr ip;
uint16_t val;
struct in_addr ip;
};
#ifdef ENABLE_BGP_VNC