diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:31:19 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:31:19 +0200 |
commit | d7b077f5d63625beaca1bcfe971e3b853dbfcc06 (patch) | |
tree | 7d0e8d62cca65ae2dd3d5e6231657f1e43630b5a /sysdep/unix/krt.c | |
parent | d024f471ea5239a8cb6ce2ccd83b686a1d438aa5 (diff) | |
parent | 4a23ede2b056a41456790cc20a0c3d92a7137693 (diff) |
Merge commit '4a23ede2b056a41456790cc20a0c3d92a7137693' into haugesund
Diffstat (limited to 'sysdep/unix/krt.c')
-rw-r--r-- | sysdep/unix/krt.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c index f80c4c45..d8a91837 100644 --- a/sysdep/unix/krt.c +++ b/sysdep/unix/krt.c @@ -243,6 +243,13 @@ struct protocol proto_unix_iface = { .copy_config = kif_copy_config }; +void +kif_build(void) +{ + proto_build(&proto_unix_iface); +} + + /* * Tracing of routes */ @@ -1186,3 +1193,9 @@ struct protocol proto_unix_kernel = { .dump = krt_dump, #endif }; + +void +krt_build(void) +{ + proto_build(&proto_unix_kernel); +} |