]> git.ipfire.org Git - thirdparty/bird.git/blob - sysdep/linux/netlink/krt-iface.h
Marked unused parameters in sysdep code as such.
[thirdparty/bird.git] / sysdep / linux / netlink / krt-iface.h
1 /*
2 * BIRD -- Unix Kernel Netlink Interface Syncer -- Dummy Include File
3 *
4 * (c) 1998--1999 Martin Mares <mj@ucw.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9 #ifndef _BIRD_KRT_IFACE_H_
10 #define _BIRD_KRT_IFACE_H_
11
12 /*
13 * We don't have split iface/scan/set parts. See krt-scan.h.
14 */
15
16 struct krt_if_params {
17 };
18
19 struct krt_if_status {
20 };
21
22 static inline void krt_if_construct(struct kif_config *c UNUSED) { };
23 static inline void krt_if_shutdown(struct kif_proto *p UNUSED) { };
24 static inline void krt_if_io_init(void) { };
25
26 static inline int kif_params_same(struct krt_if_params *old UNUSED, struct krt_if_params *new UNUSED) { return 1; }
27
28 #endif