mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-27 10:04:18 +00:00
commit
b5d79dbe71
@ -43,6 +43,7 @@
|
|||||||
#include "isisd/isis_constants.h"
|
#include "isisd/isis_constants.h"
|
||||||
#include "isisd/isis_circuit.h"
|
#include "isisd/isis_circuit.h"
|
||||||
#include "isisd/isis_network.h"
|
#include "isisd/isis_network.h"
|
||||||
|
#include "isisd/isis_pdu.h"
|
||||||
|
|
||||||
#include "privs.h"
|
#include "privs.h"
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@ struct log_ref *log_ref_get(uint32_t code)
|
|||||||
void log_ref_display(struct vty *vty, uint32_t code, bool json)
|
void log_ref_display(struct vty *vty, uint32_t code, bool json)
|
||||||
{
|
{
|
||||||
struct log_ref *ref;
|
struct log_ref *ref;
|
||||||
struct json_object *top, *obj;
|
struct json_object *top = NULL, *obj = NULL;
|
||||||
struct list *errlist;
|
struct list *errlist;
|
||||||
struct listnode *ln;
|
struct listnode *ln;
|
||||||
|
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
|
|
||||||
#include "zebra/interface.h"
|
#include "zebra/interface.h"
|
||||||
#include "zebra/rib.h"
|
#include "zebra/rib.h"
|
||||||
|
#include "zebra/rt.h"
|
||||||
|
|
||||||
#include <ifaddrs.h>
|
#include <ifaddrs.h>
|
||||||
|
|
||||||
|
@ -1558,7 +1558,9 @@ static int zvni_neigh_install(zebra_vni_t *zvni, zebra_neigh_t *n)
|
|||||||
struct zebra_if *zif;
|
struct zebra_if *zif;
|
||||||
struct zebra_l2info_vxlan *vxl;
|
struct zebra_l2info_vxlan *vxl;
|
||||||
struct interface *vlan_if;
|
struct interface *vlan_if;
|
||||||
|
#ifdef GNU_LINUX
|
||||||
uint8_t flags;
|
uint8_t flags;
|
||||||
|
#endif
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
if (!(n->flags & ZEBRA_NEIGH_REMOTE))
|
if (!(n->flags & ZEBRA_NEIGH_REMOTE))
|
||||||
@ -3369,7 +3371,9 @@ static int zl3vni_nh_del(zebra_l3vni_t *zl3vni, zebra_neigh_t *n)
|
|||||||
*/
|
*/
|
||||||
static int zl3vni_nh_install(zebra_l3vni_t *zl3vni, zebra_neigh_t *n)
|
static int zl3vni_nh_install(zebra_l3vni_t *zl3vni, zebra_neigh_t *n)
|
||||||
{
|
{
|
||||||
|
#ifdef GNU_LINUX
|
||||||
uint8_t flags;
|
uint8_t flags;
|
||||||
|
#endif
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
if (!is_l3vni_oper_up(zl3vni))
|
if (!is_l3vni_oper_up(zl3vni))
|
||||||
|
Loading…
Reference in New Issue
Block a user