]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/libfrr.h
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / lib / libfrr.h
index e0642ef84787deeb2127ad5f9ffa241e1fbe338b..97e9b93c101e45f776111432a237235a542967a2 100644 (file)
@@ -1,26 +1,14 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * libfrr overall management functions
  *
  * Copyright (C) 2016  David Lamparter for NetDEF, Inc.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; see the file COPYING; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef _ZEBRA_FRR_H
 #define _ZEBRA_FRR_H
 
+#include "typesafe.h"
 #include "sigevent.h"
 #include "privs.h"
 #include "thread.h"
@@ -52,6 +40,14 @@ extern "C" {
  */
 #define FRR_DETACH_LATER       (1 << 6)
 
+PREDECL_DLIST(log_args);
+struct log_arg {
+       struct log_args_item itm;
+
+       char target[0];
+};
+DECLARE_DLIST(log_args, struct log_arg, itm);
+
 enum frr_cli_mode {
        FRR_CLI_CLASSIC = 0,
        FRR_CLI_TRANSACTIONAL,
@@ -88,7 +84,7 @@ struct frr_daemon_info {
        const char *pathspace;
        bool zpathspace;
 
-       const char *early_logging;
+       struct log_args_head early_logging[1];
        const char *early_loglevel;
 
        const char *proghelp;
@@ -144,6 +140,7 @@ extern uint32_t frr_get_fd_limit(void);
 extern bool frr_is_startup_fd(int fd);
 
 /* call order of these hooks is as ordered here */
+DECLARE_HOOK(frr_early_init, (struct thread_master * tm), (tm));
 DECLARE_HOOK(frr_late_init, (struct thread_master * tm), (tm));
 /* fork() happens between late_init and config_pre */
 DECLARE_HOOK(frr_config_pre, (struct thread_master * tm), (tm));