]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_fpm_private.h
rmap: Add hooks into zebra,ospf,rip for `match ip next-hop type blackhole`
[mirror_frr.git] / zebra / zebra_fpm_private.h
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 *
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
22 */
23
24 #ifndef _ZEBRA_FPM_PRIVATE_H
25 #define _ZEBRA_FPM_PRIVATE_H
26
27 #include "zebra/debug.h"
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
34
35 #define zfpm_debug(...) \
36 do { \
37 if (IS_ZEBRA_DEBUG_FPM) \
38 zlog_debug("FPM: " __VA_ARGS__); \
39 } while (0)
40
41 #elif defined __GNUC__
42
43 #define zfpm_debug(_args...) \
44 do { \
45 if (IS_ZEBRA_DEBUG_FPM) \
46 zlog_debug("FPM: " _args); \
47 } while (0)
48
49 #else
50 static inline void zfpm_debug(const char *format, ...)
51 {
52 return;
53 }
54 #endif
55
56
57 /*
58 * Externs
59 */
60 extern 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);
63
64 extern int zfpm_protobuf_encode_route(rib_dest_t *dest, struct route_entry *re,
65 uint8_t *in_buf, size_t in_buf_len);
66
67 extern struct route_entry *zfpm_route_for_update(rib_dest_t *dest);
68
69 #ifdef __cplusplus
70 }
71 #endif
72
73 #endif /* _ZEBRA_FPM_PRIVATE_H */