diff options
| author | Chirag Shah <chirag@cumulusnetworks.com> | 2020-02-19 18:48:47 -0800 | 
|---|---|---|
| committer | Santosh P K <sapk@vmware.com> | 2020-04-16 08:48:28 -0700 | 
| commit | b00f3e4be463721e0ef6f27456bb1735cde5ba44 (patch) | |
| tree | 6b19277b75c577cfb372dac7b0dc82badea1b06a /zebra/zebra_nb_state.c | |
| parent | 4e0a7355c22cf06e4d1fb2e2b6a398055944ad13 (diff) | |
zebra: add nb callbacks for zebra if state
This is all stub callbacks autogenrated for
zebra interface state data.
Signed-off-by: chirag Shah <chirag@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_nb_state.c')
| -rw-r--r-- | zebra/zebra_nb_state.c | 88 | 
1 files changed, 88 insertions, 0 deletions
diff --git a/zebra/zebra_nb_state.c b/zebra/zebra_nb_state.c index c9bb320692..925f90b7c2 100644 --- a/zebra/zebra_nb_state.c +++ b/zebra/zebra_nb_state.c @@ -22,6 +22,94 @@  #include "libfrr.h"  #include "zebra_nb.h" +/* + * XPath: /frr-interface:lib/interface/frr-zebra:zebra/state/up-count + */ +struct yang_data * +lib_interface_zebra_state_up_count_get_elem(const char *xpath, +					    const void *list_entry) +{ +	/* TODO: implement me. */ +	return NULL; +} + +/* + * XPath: /frr-interface:lib/interface/frr-zebra:zebra/state/down-count + */ +struct yang_data * +lib_interface_zebra_state_down_count_get_elem(const char *xpath, +					      const void *list_entry) +{ +	/* TODO: implement me. */ +	return NULL; +} + +/* + * XPath: /frr-interface:lib/interface/frr-zebra:zebra/state/zif-type + */ +struct yang_data * +lib_interface_zebra_state_zif_type_get_elem(const char *xpath, +					    const void *list_entry) +{ +	/* TODO: implement me. */ +	return NULL; +} + +/* + * XPath: /frr-interface:lib/interface/frr-zebra:zebra/state/ptm-status + */ +struct yang_data * +lib_interface_zebra_state_ptm_status_get_elem(const char *xpath, +					      const void *list_entry) +{ +	/* TODO: implement me. */ +	return NULL; +} + +/* + * XPath: /frr-interface:lib/interface/frr-zebra:zebra/state/vlan-id + */ +struct yang_data * +lib_interface_zebra_state_vlan_id_get_elem(const char *xpath, +					   const void *list_entry) +{ +	/* TODO: implement me. */ +	return NULL; +} + +/* + * XPath: /frr-interface:lib/interface/frr-zebra:zebra/state/vni-id + */ +struct yang_data * +lib_interface_zebra_state_vni_id_get_elem(const char *xpath, +					  const void *list_entry) +{ +	/* TODO: implement me. */ +	return NULL; +} + +/* + * XPath: /frr-interface:lib/interface/frr-zebra:zebra/state/remote-vtep + */ +struct yang_data * +lib_interface_zebra_state_remote_vtep_get_elem(const char *xpath, +					       const void *list_entry) +{ +	/* TODO: implement me. */ +	return NULL; +} + +/* + * XPath: /frr-interface:lib/interface/frr-zebra:zebra/state/mcast-group + */ +struct yang_data * +lib_interface_zebra_state_mcast_group_get_elem(const char *xpath, +					       const void *list_entry) +{ +	/* TODO: implement me. */ +	return NULL; +} +  const void *lib_vrf_ribs_rib_get_next(const void *parent_list_entry,  				      const void *list_entry)  {  | 
