]> git.puffer.fish Git - mirror/frr.git/commitdiff
ospf: Fix OSPF API and ospf-te LSA refreshers to match recent API change
authorPaul Jakma <paul@quagga.net>
Mon, 11 Apr 2011 15:28:16 +0000 (16:28 +0100)
committerPaul Jakma <paul@quagga.net>
Wed, 13 Apr 2011 14:13:33 +0000 (15:13 +0100)
* ospf_apiserver.{c,h}: (ospf_apiserver_lsa_refresher) refreshers must now
  return the refreshed LSA.
* ospf_te.{c,h}: (ospf_mpls_te_lsa_refresh) ditto
* ospf_api.c: trivial compiler warning fix

ospfd/ospf_api.c
ospfd/ospf_apiserver.c
ospfd/ospf_apiserver.h
ospfd/ospf_te.c

index 773831910740bb4ce17100fed8ea0e6fb9ef31be..fc3b51ddfd330aae9a08109eaf501ab9c13223eb 100644 (file)
@@ -219,7 +219,7 @@ msg_print (struct msg *msg)
 #else /* ORIGINAL_CODING */
   /* API message common header part. */
   zlog_debug
-    ("API-msg [%s]: type(%d),len(%d),seq(%lu),data(%p),size(%lu)",
+    ("API-msg [%s]: type(%d),len(%d),seq(%lu),data(%p),size(%zd)",
      ospf_api_typename (msg->hdr.msgtype), msg->hdr.msgtype, 
      ntohs (msg->hdr.msglen), (unsigned long) ntohl (msg->hdr.msgseq),
      STREAM_DATA (msg->s), STREAM_SIZE (msg->s));
index 15fd2e5fc0c25dcf577f1f7ffd85d43cdd1f5491..2a9003b72b8b854521a83c097bcb0ba30529a654 100644 (file)
@@ -1831,7 +1831,7 @@ ospf_apiserver_lsa11_originator (void *arg)
 
 /* Periodically refresh opaque LSAs so that they do not expire in
    other routers. */
-void
+struct ospf_lsa *
 ospf_apiserver_lsa_refresher (struct ospf_lsa *lsa)
 {
   struct ospf_apiserver *apiserv;
@@ -1904,7 +1904,7 @@ ospf_apiserver_lsa_refresher (struct ospf_lsa *lsa)
     }
 
 out:
-  return;
+  return new;
 }
 
 
index 9a8ae254e88b02371b8c0c424bda000afcb46601..b60f56b4fc9e7b7a60d4b4647f62b06ffbf16bef 100644 (file)
@@ -180,7 +180,7 @@ extern void ospf_apiserver_config_write_router (struct vty *vty);
 extern void ospf_apiserver_config_write_if (struct vty *vty, struct interface *ifp);
 extern void ospf_apiserver_show_info (struct vty *vty, struct ospf_lsa *lsa);
 extern int ospf_ospf_apiserver_lsa_originator (void *arg);
-extern void ospf_apiserver_lsa_refresher (struct ospf_lsa *lsa);
+extern struct ospf_lsa *ospf_apiserver_lsa_refresher (struct ospf_lsa *lsa);
 extern void ospf_apiserver_flush_opaque_lsa (struct ospf_apiserver *apiserv,
                                      u_char lsa_type, u_char opaque_type);
 
index c5ec0ad8d06566f0a27e0627785797a6a60464c8..24e81052f75a96bba01947ae20fd5757d9a8779c 100644 (file)
@@ -133,7 +133,7 @@ static void ospf_mpls_te_config_write_router (struct vty *vty);
 static void ospf_mpls_te_config_write_if (struct vty *vty, struct interface *ifp);
 static void ospf_mpls_te_show_info (struct vty *vty, struct ospf_lsa *lsa);
 static int ospf_mpls_te_lsa_originate (void *arg);
-static void ospf_mpls_te_lsa_refresh (struct ospf_lsa *lsa);
+static struct ospf_lsa *ospf_mpls_te_lsa_refresh (struct ospf_lsa *lsa);
 static void ospf_mpls_te_lsa_schedule (struct mpls_te_link *lp, enum sched_opcode);
 
 static void del_mpls_te_link (void *val);
@@ -1009,7 +1009,7 @@ out:
   return rc;
 }
 
-static void
+static struct ospf_lsa *
 ospf_mpls_te_lsa_refresh (struct ospf_lsa *lsa)
 {
   struct mpls_te_link *lp;
@@ -1070,7 +1070,7 @@ ospf_mpls_te_lsa_refresh (struct ospf_lsa *lsa)
     }
 
 out:
-  return;
+  return new;
 }
 
 static void