mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-28 17:42:20 +00:00

Done with a combination of regex'ing and banging my head against a wall. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
20 lines
696 B
C
20 lines
696 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* OSPF network related functions.
|
|
* Copyright (C) 1999 Toshiaki Takada
|
|
*/
|
|
|
|
#ifndef _ZEBRA_OSPF_NETWORK_H
|
|
#define _ZEBRA_OSPF_NETWORK_H
|
|
|
|
/* Prototypes. */
|
|
extern int ospf_if_add_allspfrouters(struct ospf *, struct prefix *, ifindex_t);
|
|
extern int ospf_if_drop_allspfrouters(struct ospf *, struct prefix *,
|
|
ifindex_t);
|
|
extern int ospf_if_add_alldrouters(struct ospf *, struct prefix *, ifindex_t);
|
|
extern int ospf_if_drop_alldrouters(struct ospf *, struct prefix *, ifindex_t);
|
|
extern int ospf_if_ipmulticast(struct ospf *, struct prefix *, ifindex_t);
|
|
extern int ospf_sock_init(struct ospf *ospf);
|
|
|
|
#endif /* _ZEBRA_OSPF_NETWORK_H */
|