]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_fpm_private.h
tools: retain sanity when reloading under systemd
[mirror_frr.git] / zebra / zebra_fpm_private.h
CommitLineData
5adc2528
AS
1/*
2 * Private header file for the zebra FPM module.
3 *
4 * Copyright (C) 2012 by Open Source Routing.
5 * Copyright (C) 2012 by Internet Systems Consortium, Inc. ("ISC")
6 *
7 * This file is part of GNU Zebra.
8 *
9 * GNU Zebra is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2, or (at your option)
12 * any later version.
13 *
14 * GNU Zebra is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
896014f4
DL
19 * You should have received a copy of the GNU General Public License along
20 * with this program; see the file COPYING; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
5adc2528
AS
22 */
23
24#ifndef _ZEBRA_FPM_PRIVATE_H
25#define _ZEBRA_FPM_PRIVATE_H
26
27#include "zebra/debug.h"
28
51e94aa7
EDP
29#ifdef __cplusplus
30extern "C" {
31#endif
32
5adc2528
AS
33#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
34
d62a17ae 35#define zfpm_debug(...) \
36 do { \
37 if (IS_ZEBRA_DEBUG_FPM) \
38 zlog_debug("FPM: " __VA_ARGS__); \
39 } while (0)
5adc2528
AS
40
41#elif defined __GNUC__
42
d62a17ae 43#define zfpm_debug(_args...) \
44 do { \
45 if (IS_ZEBRA_DEBUG_FPM) \
46 zlog_debug("FPM: " _args); \
47 } while (0)
5adc2528
AS
48
49#else
d62a17ae 50static inline void zfpm_debug(const char *format, ...)
51{
52 return;
53}
5adc2528
AS
54#endif
55
56
57/*
58 * Externs
59 */
d62a17ae 60extern int zfpm_netlink_encode_route(int cmd, rib_dest_t *dest,
61 struct route_entry *re, char *in_buf,
62 size_t in_buf_len);
5adc2528 63
d62a17ae 64extern int zfpm_protobuf_encode_route(rib_dest_t *dest, struct route_entry *re,
65 uint8_t *in_buf, size_t in_buf_len);
fb0aa886 66
d62a17ae 67extern struct route_entry *zfpm_route_for_update(rib_dest_t *dest);
51e94aa7
EDP
68
69#ifdef __cplusplus
70}
71#endif
72
5adc2528 73#endif /* _ZEBRA_FPM_PRIVATE_H */