]> git.proxmox.com Git - mirror_frr.git/blobdiff - ldpd/control.h
bgpd: [7.1] add addpath ID to adj_out tree sort (#5691)
[mirror_frr.git] / ldpd / control.h
index fd6e47071dbdadf327f5a85fbb7585f593de7f82..23edb5f24d9360772166ff9e92365fa592e69d06 100644 (file)
@@ -19,8 +19,7 @@
 #ifndef _CONTROL_H_
 #define        _CONTROL_H_
 
-#include <sys/types.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 struct ctl_conn {
        TAILQ_ENTRY(ctl_conn)   entry;
@@ -30,9 +29,9 @@ TAILQ_HEAD(ctl_conns, ctl_conn);
 
 extern struct ctl_conns ctl_conns;
 
-int    control_init(void);
+int    control_init(char *);
 int    control_listen(void);
-void   control_cleanup(void);
+void   control_cleanup(char *);
 int    control_imsg_relay(struct imsg *);
 
 #endif /* _CONTROL_H_ */