Commit 98bf329b authored by Pavel Tvrdík's avatar Pavel Tvrdík
Browse files

RPKI: add new protocol skeleton

parent c7b99a93
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -205,7 +205,7 @@ fi

AC_SUBST(iproutedir)

all_protocols="$proto_bfd bgp ospf pipe $proto_radv rip static"
all_protocols="$proto_bfd bgp ospf pipe $proto_radv rip rpki static"
all_protocols=`echo $all_protocols | sed 's/ /,/g'`

if test "$with_protocols" = all ; then
+3 −0
Original line number Diff line number Diff line
@@ -919,6 +919,9 @@ protos_build(void)
  proto_build(&proto_bfd);
  bfd_init_all();
#endif
#ifdef CONFIG_RPKI
  proto_build(&proto_rpki);
#endif

  proto_pool = rp_new(&root_pool, "Protocols");
  proto_flush_event = ev_new(proto_pool);
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ void protos_dump_all(void);

extern struct protocol
  proto_device, proto_radv, proto_rip, proto_static,
  proto_ospf, proto_pipe, proto_bgp, proto_bfd;
  proto_ospf, proto_pipe, proto_bgp, proto_bfd, proto_rpki;

/*
 *	Routing Protocol Instance
+2 −1
Original line number Diff line number Diff line
@@ -3,7 +3,8 @@ C bfd
C bgp
C ospf
C pipe
C rip
C radv
C rip
C rpki
C static
S ../nest/rt-dev.c

proto/rpki/Doc

0 → 100644
+1 −0
Original line number Diff line number Diff line
C rpki.c
Loading