blob: 127bf45c7f6b99c9cae4ade0817fd33f034b432a [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
hasso508e53e2004-05-18 18:57:06 +00002 * Copyright (C) 2003 Yasuhiro Ohara
paul718e3742002-12-13 20:15:29 +00003 *
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 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#ifndef OSPF6_NETWORK_H
23#define OSPF6_NETWORK_H
24
David Lamparter6b0655a2014-06-04 06:53:35 +020025
paul718e3742002-12-13 20:15:29 +000026
hasso508e53e2004-05-18 18:57:06 +000027extern int ospf6_sock;
28extern struct in6_addr allspfrouters6;
29extern struct in6_addr alldrouters6;
paul718e3742002-12-13 20:15:29 +000030
Paul Jakma6ac29a52008-08-15 13:45:30 +010031extern int ospf6_serv_sock (void);
Vyacheslav Trushkin9a9446e2011-11-21 20:26:39 +040032extern void ospf6_sso (u_int ifindex, struct in6_addr *group, int option);
hasso508e53e2004-05-18 18:57:06 +000033
Paul Jakma6ac29a52008-08-15 13:45:30 +010034extern int ospf6_sendmsg (struct in6_addr *, struct in6_addr *,
35 unsigned int *, struct iovec *);
36extern int ospf6_recvmsg (struct in6_addr *, struct in6_addr *,
37 unsigned int *, struct iovec *);
paul718e3742002-12-13 20:15:29 +000038
39#endif /* OSPF6_NETWORK_H */
40