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