blob: fd8758e8e6f25abf1215eeac81e938d1fa5c6dc7 [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 */
Paul Jakma6ac29a52008-08-15 13:45:30 +010032extern void ospf6_set_reuseaddr (void);
33extern void ospf6_reset_mcastloop (void);
34extern void ospf6_set_pktinfo (void);
35extern void ospf6_set_checksum (void);
paul718e3742002-12-13 20:15:29 +000036
Paul Jakma6ac29a52008-08-15 13:45:30 +010037extern int ospf6_serv_sock (void);
hasso508e53e2004-05-18 18:57:06 +000038
Paul Jakma6ac29a52008-08-15 13:45:30 +010039extern void ospf6_join_allspfrouters (u_int);
40extern void ospf6_leave_allspfrouters (u_int);
41extern void ospf6_join_alldrouters (u_int);
42extern void ospf6_leave_alldrouters (u_int);
hasso508e53e2004-05-18 18:57:06 +000043
Paul Jakma6ac29a52008-08-15 13:45:30 +010044extern int ospf6_sendmsg (struct in6_addr *, struct in6_addr *,
45 unsigned int *, struct iovec *);
46extern int 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