mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-28 23:33:08 +00:00

Done with a combination of regex'ing and banging my head against a wall. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
12 lines
302 B
C
12 lines
302 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* IP MSDP socket management for Quagga
|
|
* Copyright (C) 2016 Cumulus Networks, Inc.
|
|
*/
|
|
#ifndef PIM_MSDP_SOCKET_H
|
|
#define PIM_MSDP_SOCKET_H
|
|
|
|
int pim_msdp_sock_listen(struct pim_instance *pim);
|
|
int pim_msdp_sock_connect(struct pim_msdp_peer *mp);
|
|
#endif
|