]> git.proxmox.com Git - mirror_frr.git/blobdiff - tests/bgpd/test_ecommunity.c
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / tests / bgpd / test_ecommunity.c
index 3de8a9fc72d391169e6691dc5385d71533f8f638..bb360722c8c112d4e9851ca982681d36468fdbe8 100644 (file)
@@ -1,21 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * Copyright (C) 2007 Sun Microsystems, Inc.
- *
- * This file is part of Quagga.
- *
- * Quagga 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.
- *
- * Quagga 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
  */
 #include <zebra.h>
 
@@ -30,7 +15,7 @@
 #include "bgpd/bgp_ecommunity.h"
 
 /* need these to link in libbgp */
-struct zebra_privs_t *bgpd_privs = NULL;
+struct zebra_privs_t bgpd_privs = {};
 struct thread_master *master = NULL;
 
 static int failed = 0;
@@ -45,7 +30,7 @@ struct test_spec {
 static struct test_segment {
        const char *name;
        const char *desc;
-       const u_int8_t data[1024];
+       const uint8_t data[1024];
        int len;
        struct test_spec sp;
 } test_segments[] = {{/* 0 */
@@ -121,7 +106,7 @@ static void parse_test(struct test_segment *t)
 
        printf("%s: %s\n", t->name, t->desc);
 
-       ecom = ecommunity_parse((u_int8_t *)t->data, t->len);
+       ecom = ecommunity_parse((uint8_t *)t->data, t->len, 0);
 
        printf("ecom: %s\nvalidating...:\n", ecommunity_str(ecom));