1 /* BGP Flowspec header for utilities
2 * Copyright (C) 2018 6WIND
4 * FRRouting is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2, or (at your option) any
9 * FRRouting is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; see the file COPYING; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef _FRR_BGP_FLOWSPEC_UTIL_H
20 #define _FRR_BGP_FLOWSPEC_UTIL_H
24 #define BGP_FLOWSPEC_STRING_DISPLAY_MAX 512
26 enum bgp_flowspec_util_nlri_t
{
27 BGP_FLOWSPEC_VALIDATE_ONLY
= 0,
28 BGP_FLOWSPEC_RETURN_STRING
= 1,
29 BGP_FLOWSPEC_CONVERT_TO_NON_OPAQUE
= 2,
30 BGP_FLOWSPEC_RETURN_JSON
= 3,
34 extern int bgp_flowspec_op_decode(enum bgp_flowspec_util_nlri_t type
,
37 void *result
, int *error
);
39 extern int bgp_flowspec_ip_address(enum bgp_flowspec_util_nlri_t type
,
42 void *result
, int *error
);
44 extern int bgp_flowspec_bitmask_decode(enum bgp_flowspec_util_nlri_t type
,
47 void *result
, int *error
);
49 struct bgp_pbr_entry_main
;
50 extern int bgp_flowspec_match_rules_fill(uint8_t *nlri_content
, int len
,
51 struct bgp_pbr_entry_main
*bpem
);
53 extern bool bgp_flowspec_contains_prefix(struct prefix
*pfs
,
57 #endif /* _FRR_BGP_FLOWSPEC_UTIL_H */