]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_dump_api.h
Merge pull request #12791 from taspelund/loc_rib_json_fix
[mirror_frr.git] / ospfd / ospf_dump_api.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * OSPFd dump routine (parts used by ospfclient).
4 * Copyright (C) 1999 Toshiaki Takada
5 */
6
7 #ifndef _ZEBRA_OSPF_DUMP_API_H
8 #define _ZEBRA_OSPF_DUMP_API_H
9
10 #include "log.h"
11 struct lsa_header;
12
13 extern const struct message ospf_ism_state_msg[];
14 extern const struct message ospf_nsm_state_msg[];
15 extern const struct message ospf_lsa_type_msg[];
16 extern const struct message ospf_link_state_id_type_msg[];
17 extern const struct message ospf_network_type_msg[];
18 extern const struct message ospf_auth_type_str[];
19 extern const int ospf_ism_state_msg_max;
20 extern const int ospf_nsm_state_msg_max;
21 extern const int ospf_lsa_type_msg_max;
22 extern const int ospf_link_state_id_type_msg_max;
23 extern const int ospf_network_type_msg_max;
24 extern const size_t ospf_auth_type_str_max;
25
26 extern char *ospf_options_dump(uint8_t);
27 extern void ospf_lsa_header_dump(struct lsa_header *);
28
29 #endif /* _ZEBRA_OSPF_DUMP_API_H */