Use traditional Unix route/iface interface only when CONFIG_NETLINK
is not defined. Also moved declarations of Unix iface logic to krt.h.
This commit is contained in:
parent
12be9b8c18
commit
025d14cd5a
4 changed files with 12 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
#ifdef CONFIG_NETLINK
|
||||||
|
netlink.c
|
||||||
|
#else
|
||||||
krt-scan.c
|
krt-scan.c
|
||||||
krt-scan.h
|
krt-scan.h
|
||||||
krt-scan.Y
|
krt-scan.Y
|
||||||
|
#endif
|
||||||
|
|
|
@ -3,6 +3,8 @@ main.c
|
||||||
timer.h
|
timer.h
|
||||||
io.c
|
io.c
|
||||||
unix.h
|
unix.h
|
||||||
|
|
||||||
|
#ifndef CONFIG_NETLINK
|
||||||
sync-if.c
|
sync-if.c
|
||||||
sync-rt.c
|
sync-rt.c
|
||||||
krt.Y
|
krt.Y
|
||||||
|
@ -12,3 +14,4 @@ krt-set.h
|
||||||
krt-set.Y
|
krt-set.Y
|
||||||
krt-iface.h
|
krt-iface.h
|
||||||
krt-iface.Y
|
krt-iface.Y
|
||||||
|
#endif
|
||||||
|
|
|
@ -56,6 +56,11 @@ void krt_set_shutdown(struct krt_proto *);
|
||||||
|
|
||||||
/* sync-if.c */
|
/* sync-if.c */
|
||||||
|
|
||||||
|
extern int if_scan_sock;
|
||||||
|
extern int if_scan_period;
|
||||||
|
|
||||||
|
void scan_if_init(void);
|
||||||
|
|
||||||
void krt_if_preconfig(struct krt_config *);
|
void krt_if_preconfig(struct krt_config *);
|
||||||
void krt_if_start(struct krt_proto *);
|
void krt_if_start(struct krt_proto *);
|
||||||
void krt_if_shutdown(struct krt_proto *);
|
void krt_if_shutdown(struct krt_proto *);
|
||||||
|
|
|
@ -26,11 +26,4 @@ void io_loop(void);
|
||||||
void fill_in_sockaddr(struct sockaddr_in *sa, ip_addr a, unsigned port);
|
void fill_in_sockaddr(struct sockaddr_in *sa, ip_addr a, unsigned port);
|
||||||
void get_sockaddr(struct sockaddr_in *sa, ip_addr *a, unsigned *port);
|
void get_sockaddr(struct sockaddr_in *sa, ip_addr *a, unsigned *port);
|
||||||
|
|
||||||
/* sync-if.c */
|
|
||||||
|
|
||||||
extern int if_scan_sock;
|
|
||||||
extern int if_scan_period;
|
|
||||||
|
|
||||||
void scan_if_init(void);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue