mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 04:45:32 +00:00 
			
		
		
		
	Compile with v2.0.0 tag of `libyang2` branch of: https://github.com/CESNET/libyang staticd init load time of 10k routes now 6s vs ly1 time of 150s Signed-off-by: Christian Hopps <chopps@labn.net>
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Testing shim and API examples for the new CLI backend.
 | 
						|
 *
 | 
						|
 * Minimal main() to run grammar_sandbox standalone.
 | 
						|
 * [split off grammar_sandbox.c 2017-01-23]
 | 
						|
 * --
 | 
						|
 * 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
 | 
						|
#include "config.h"
 | 
						|
#endif
 | 
						|
 | 
						|
#include "command.h"
 | 
						|
#include "lib_vty.h"
 | 
						|
 | 
						|
static void vty_do_exit(int isexit)
 | 
						|
{
 | 
						|
	printf("\nend.\n");
 | 
						|
	if (!isexit)
 | 
						|
		exit(0);
 | 
						|
}
 | 
						|
 | 
						|
struct thread_master *master;
 | 
						|
 | 
						|
int main(int argc, char **argv)
 | 
						|
{
 | 
						|
	struct thread thread;
 | 
						|
 | 
						|
	master = thread_master_create(NULL);
 | 
						|
 | 
						|
	zlog_aux_init("NONE: ", LOG_DEBUG);
 | 
						|
 | 
						|
	/* Library inits. */
 | 
						|
	cmd_init(1);
 | 
						|
	host.name = strdup("test");
 | 
						|
	host.domainname = strdup("testdomainname");
 | 
						|
 | 
						|
	vty_init(master, true);
 | 
						|
	lib_cmd_init();
 | 
						|
	nb_init(master, NULL, 0, false);
 | 
						|
 | 
						|
	vty_stdio(vty_do_exit);
 | 
						|
 | 
						|
	/* Fetch next active thread. */
 | 
						|
	while (thread_fetch(master, &thread))
 | 
						|
		thread_call(&thread);
 | 
						|
 | 
						|
	/* Not reached. */
 | 
						|
	exit(0);
 | 
						|
}
 |