]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_network.h
Merge pull request #8576 from pguibert6WIND/macvlan_crash
[mirror_frr.git] / ospf6d / ospf6_network.h
CommitLineData
718e3744 1/*
508e53e2 2 * Copyright (C) 2003 Yasuhiro Ohara
718e3744 3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#ifndef OSPF6_NETWORK_H
22#define OSPF6_NETWORK_H
23
508e53e2 24extern struct in6_addr allspfrouters6;
25extern struct in6_addr alldrouters6;
26
7df1f362
K
27extern int ospf6_serv_sock(struct ospf6 *ospf6);
28extern void ospf6_serv_close(int *ospf6_sock);
beadc736 29extern int ospf6_sso(ifindex_t ifindex, struct in6_addr *group, int option,
30 int sockfd);
6ac29a51 31
01d8acff 32extern int ospf6_sendmsg(struct in6_addr *src, struct in6_addr *dst,
b66ec22c 33 ifindex_t ifindex, struct iovec *message,
01d8acff
DS
34 int ospf6_sock);
35extern int ospf6_recvmsg(struct in6_addr *src, struct in6_addr *dst,
36 ifindex_t *ifindex, struct iovec *message,
37 int ospf6_sock);
718e3744 38
39#endif /* OSPF6_NETWORK_H */