]> git.proxmox.com Git - mirror_frr.git/blame - isisd/isis_network.h
Merge pull request #5793 from ton31337/fix/formatting_show_bgp_summary_failed
[mirror_frr.git] / isisd / isis_network.h
CommitLineData
eb5d44eb 1/*
d62a17ae 2 * IS-IS Rout(e)ing protocol - isis_network.h
eb5d44eb 3 *
4 * Copyright (C) 2001,2002 Sampo Saaristo
d62a17ae 5 * Tampere University of Technology
eb5d44eb 6 * Institute of Communications Engineering
7 *
d62a17ae 8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public Licenseas published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
eb5d44eb 11 * any later version.
12 *
d62a17ae 13 * This program is distributed in the hope that it will be useful,but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
eb5d44eb 16 * more details.
896014f4
DL
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
eb5d44eb 21 */
22
23
24#ifndef _ZEBRA_ISIS_NETWORK_H
25#define _ZEBRA_ISIS_NETWORK_H
26
d7c0a89a
QY
27extern uint8_t ALL_L1_ISYSTEMS[];
28extern uint8_t ALL_L2_ISYSTEMS[];
eb5d44eb 29
d62a17ae 30int isis_sock_init(struct isis_circuit *circuit);
eb5d44eb 31
d7c0a89a
QY
32int isis_recv_pdu_bcast(struct isis_circuit *circuit, uint8_t *ssnpa);
33int isis_recv_pdu_p2p(struct isis_circuit *circuit, uint8_t *ssnpa);
d62a17ae 34int isis_send_pdu_bcast(struct isis_circuit *circuit, int level);
35int isis_send_pdu_p2p(struct isis_circuit *circuit, int level);
eb5d44eb 36
37#endif /* _ZEBRA_ISIS_NETWORK_H */