blob: 9a4d795e5aff15bf74142b5b290ee4c59d9dbdd2 [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
25
26
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
hasso508e53e2004-05-18 18:57:06 +000031/* Function Prototypes */
paul718e3742002-12-13 20:15:29 +000032void ospf6_set_reuseaddr ();
33void ospf6_reset_mcastloop ();
34void ospf6_set_pktinfo ();
35void ospf6_set_checksum ();
36
hasso508e53e2004-05-18 18:57:06 +000037int ospf6_serv_sock ();
38
39void ospf6_join_allspfrouters (u_int);
40void ospf6_leave_allspfrouters (u_int);
41void ospf6_join_alldrouters (u_int);
42void ospf6_leave_alldrouters (u_int);
43
44int ospf6_sendmsg (struct in6_addr *, struct in6_addr *,
45 unsigned int *, struct iovec *);
46int ospf6_recvmsg (struct in6_addr *, struct in6_addr *,
47 unsigned int *, struct iovec *);
paul718e3742002-12-13 20:15:29 +000048
49#endif /* OSPF6_NETWORK_H */
50