summaryrefslogtreecommitdiffstats
path: root/lib/libfrr.h
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2021-04-22 12:06:51 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2021-04-22 13:16:20 +0200
commit2bafda27a602f74a592551bf695438218efd62f4 (patch)
treee035d39b5e8c9a7bc6bd8c5715b2c3d060c8100d /lib/libfrr.h
parentMerge pull request #8528 from opensourcerouting/build-cleanup-20210421 (diff)
downloadfrr-2bafda27a602f74a592551bf695438218efd62f4.tar.xz
frr-2bafda27a602f74a592551bf695438218efd62f4.zip
lib: rename very_late_init hook to config_post
very_late_init doesn't really say what this does, config_post is much more descriptive. (A config_pre is coming in a jiffy.) Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/libfrr.h')
-rw-r--r--lib/libfrr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libfrr.h b/lib/libfrr.h
index db0f36498..114e63122 100644
--- a/lib/libfrr.h
+++ b/lib/libfrr.h
@@ -142,7 +142,7 @@ extern uint32_t frr_get_fd_limit(void);
extern bool frr_is_startup_fd(int fd);
DECLARE_HOOK(frr_late_init, (struct thread_master * tm), (tm));
-DECLARE_HOOK(frr_very_late_init, (struct thread_master * tm), (tm));
+DECLARE_HOOK(frr_config_post, (struct thread_master * tm), (tm));
extern void frr_config_fork(void);
extern void frr_run(struct thread_master *master);