diff options
| author | Russ White <russ@riw.us> | 2021-01-19 07:17:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-19 07:17:03 -0500 |
| commit | c0b6ef23f74ef05f6a7550b78590e31605e7f90f (patch) | |
| tree | 42c8bfea591bb848a0ca4e6ff41116bb62277d34 /bgpd/bgp_script.h | |
| parent | 4168228f25e51d947a93fc09fe1d5866e3523a25 (diff) | |
| parent | 56df11cb85f05b035bb3234a14d9062a27b1f61d (diff) | |
Merge pull request #7639 from qlyoung/frr-lua
Scripting
Diffstat (limited to 'bgpd/bgp_script.h')
| -rw-r--r-- | bgpd/bgp_script.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/bgpd/bgp_script.h b/bgpd/bgp_script.h new file mode 100644 index 0000000000..6682c2eebd --- /dev/null +++ b/bgpd/bgp_script.h @@ -0,0 +1,34 @@ +/* BGP scripting foo + * Copyright (C) 2020 NVIDIA Corporation + * Quentin Young + * + * This program 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 of the License, or + * (at your option) any later version. + * + * This program 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 __BGP_SCRIPT__ +#define __BGP_SCRIPT__ + +#include <zebra.h> + +#ifdef HAVE_SCRIPTING + +/* + * Initialize scripting stuff. + */ +void bgp_script_init(void); + +#endif /* HAVE_SCRIPTING */ + +#endif /* __BGP_SCRIPT__ */ |
