]> git.proxmox.com Git - mirror_frr.git/blobdiff - ospfclient/ospf_apiclient.h
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / ospfclient / ospf_apiclient.h
index 916a2d8ed15f52bb14b77d29bfe9e8757d332726..c90b1fb7c15b2fcbc37cf514a8c4d4e70e107138 100644 (file)
@@ -1,22 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * Client side of OSPF API.
  * Copyright (C) 2001, 2002, 2003 Ralph Keller
- *
- * This file is part of GNU Zebra.
- *
- * GNU Zebra is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published
- * by the Free Software Foundation; either version 2, or (at your
- * option) any later version.
- *
- * GNU Zebra is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; see the file COPYING; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef _OSPF_APICLIENT_H
@@ -30,18 +15,18 @@ struct ospf_apiclient {
        int fd_async;
 
        /* Pointer to callback functions */
-       void (*ready_notify)(u_char lsa_type, u_char opaque_type,
+       void (*ready_notify)(uint8_t lsa_type, uint8_t opaque_type,
                             struct in_addr addr);
        void (*new_if)(struct in_addr ifaddr, struct in_addr area_id);
        void (*del_if)(struct in_addr ifaddr);
        void (*ism_change)(struct in_addr ifaddr, struct in_addr area_id,
-                          u_char status);
+                          uint8_t status);
        void (*nsm_change)(struct in_addr ifaddr, struct in_addr nbraddr,
-                          struct in_addr router_id, u_char status);
+                          struct in_addr router_id, uint8_t status);
        void (*update_notify)(struct in_addr ifaddr, struct in_addr area_id,
-                             u_char self_origin, struct lsa_header *lsa);
+                             uint8_t self_origin, struct lsa_header *lsa);
        void (*delete_notify)(struct in_addr ifaddr, struct in_addr area_id,
-                             u_char self_origin, struct lsa_header *lsa);
+                             uint8_t self_origin, struct lsa_header *lsa);
 };
 
 
@@ -58,27 +43,27 @@ int ospf_apiclient_close(struct ospf_apiclient *oclient);
 
 /* Synchronous request to register opaque type. */
 int ospf_apiclient_register_opaque_type(struct ospf_apiclient *oclient,
-                                       u_char ltype, u_char otype);
+                                       uint8_t ltype, uint8_t otype);
 
 /* Synchronous request to register event mask. */
 int ospf_apiclient_register_events(struct ospf_apiclient *oclient,
-                                  u_int32_t mask);
+                                  uint32_t mask);
 
 /* Register callback functions.*/
 void ospf_apiclient_register_callback(
        struct ospf_apiclient *oclient,
-       void (*ready_notify)(u_char lsa_type, u_char opaque_type,
+       void (*ready_notify)(uint8_t lsa_type, uint8_t opaque_type,
                             struct in_addr addr),
        void (*new_if)(struct in_addr ifaddr, struct in_addr area_id),
        void (*del_if)(struct in_addr ifaddr),
        void (*ism_change)(struct in_addr ifaddr, struct in_addr area_id,
-                          u_char status),
+                          uint8_t status),
        void (*nsm_change)(struct in_addr ifaddr, struct in_addr nbraddr,
-                          struct in_addr router_id, u_char status),
+                          struct in_addr router_id, uint8_t status),
        void (*update_notify)(struct in_addr ifaddr, struct in_addr area_id,
-                             u_char selforig, struct lsa_header *lsa),
+                             uint8_t selforig, struct lsa_header *lsa),
        void (*delete_notify)(struct in_addr ifaddr, struct in_addr area_id,
-                             u_char selforig, struct lsa_header *lsa));
+                             uint8_t selforig, struct lsa_header *lsa));
 
 /* Synchronous request to synchronize LSDB. */
 int ospf_apiclient_sync_lsdb(struct ospf_apiclient *oclient);
@@ -86,16 +71,17 @@ int ospf_apiclient_sync_lsdb(struct ospf_apiclient *oclient);
 /* Synchronous request to originate or update opaque LSA. */
 int ospf_apiclient_lsa_originate(struct ospf_apiclient *oclient,
                                 struct in_addr ifaddr, struct in_addr area_id,
-                                u_char lsa_type, u_char opaque_type,
-                                u_int32_t opaque_id, void *opaquedata,
+                                uint8_t lsa_type, uint8_t opaque_type,
+                                uint32_t opaque_id, void *opaquedata,
                                 int opaquelen);
 
 
 /* Synchronous request to delete opaque LSA. Parameter opaque_id is in
    host byte order */
 int ospf_apiclient_lsa_delete(struct ospf_apiclient *oclient,
-                             struct in_addr area_id, u_char lsa_type,
-                             u_char opaque_type, u_int32_t opaque_id);
+                             struct in_addr addr, uint8_t lsa_type,
+                             uint8_t opaque_type, uint32_t opaque_id,
+                             uint8_t flags);
 
 /* Fetch async message and handle it  */
 int ospf_apiclient_handle_async(struct ospf_apiclient *oclient);