]> git.proxmox.com Git - mirror_frr.git/blobdiff - sharpd/sharp_main.c
zebra: Refactor kernel_rtm to be a bit smarter about how it handles options
[mirror_frr.git] / sharpd / sharp_main.c
index 65b1837f68f14a50c1075822a22e91443456b2a4..20cdd21e7d23498af780700ddf7535b4fe65b7a7 100644 (file)
@@ -111,6 +111,9 @@ struct quagga_signal_t sharp_signals[] = {
 
 #define SHARP_VTY_PORT 2614
 
+static const struct frr_yang_module_info *sharpd_yang_modules[] = {
+};
+
 FRR_DAEMON_INFO(sharpd, SHARP, .vty_port = SHARP_VTY_PORT,
 
                .proghelp = "Implementation of a Sharp of routes daemon.",
@@ -118,7 +121,8 @@ FRR_DAEMON_INFO(sharpd, SHARP, .vty_port = SHARP_VTY_PORT,
                .signals = sharp_signals,
                .n_signals = array_size(sharp_signals),
 
-               .privs = &sharp_privs, )
+               .privs = &sharp_privs, .yang_modules = sharpd_yang_modules,
+               .n_yang_modules = array_size(sharpd_yang_modules), )
 
 extern void sharp_vty_init(void);