]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/grammar_sandbox_main.c
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[mirror_frr.git] / lib / grammar_sandbox_main.c
index fbb97d2dd561ae95e5d91e9baa8adf43b7674cf4..abd42f359f059adb4b6a3581aa8b9c29a3d3e4ef 100644 (file)
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * Testing shim and API examples for the new CLI backend.
  *
@@ -6,21 +7,6 @@
  * --
  * Copyright (C) 2016 Cumulus Networks, Inc.
  * Copyright (C) 2017 David Lamparter for NetDEF, Inc.
- *
- * This file is part of FRRouting (FRR).
- *
- * FRR 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.
- *
- * FRR 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
  */
 
 #ifdef HAVE_CONFIG_H
@@ -37,31 +23,30 @@ static void vty_do_exit(int isexit)
                exit(0);
 }
 
-struct thread_master *master;
+struct event_loop *master;
 
 int main(int argc, char **argv)
 {
-       struct thread thread;
+       struct event event;
 
-       master = thread_master_create(NULL);
+       master = event_master_create(NULL);
 
        zlog_aux_init("NONE: ", LOG_DEBUG);
 
        /* Library inits. */
        cmd_init(1);
-       host.name = strdup("test");
-       host.domainname = strdup("testdomainname");
+       cmd_hostname_set("test");
+       cmd_domainname_set("testdomainname");
 
        vty_init(master, true);
        lib_cmd_init();
-       yang_init(true);
-       nb_init(master, NULL, 0);
+       nb_init(master, NULL, 0, false);
 
        vty_stdio(vty_do_exit);
 
        /* Fetch next active thread. */
-       while (thread_fetch(master, &thread))
-               thread_call(&thread);
+       while (event_fetch(master, &event))
+               event_call(&event);
 
        /* Not reached. */
        exit(0);