]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6d.h
*: add indent control files
[mirror_frr.git] / ospf6d / ospf6d.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 OSPF6D_H
22#define OSPF6D_H
23
0b26f81b 24#define OSPF6_DAEMON_VERSION "0.9.7r"
718e3744 25
8551e6da
DD
26#include "libospf.h"
27#include "thread.h"
28
4a1ab8e4
DL
29#include "ospf6_memory.h"
30
718e3744 31/* global variables */
718e3744 32extern struct thread_master *master;
718e3744 33
508e53e2 34/* Historical for KAME. */
718e3744 35#ifndef IPV6_JOIN_GROUP
36#ifdef IPV6_ADD_MEMBERSHIP
37#define IPV6_JOIN_GROUP IPV6_ADD_MEMBERSHIP
38#endif /* IPV6_ADD_MEMBERSHIP. */
39#ifdef IPV6_JOIN_MEMBERSHIP
40#define IPV6_JOIN_GROUP IPV6_JOIN_MEMBERSHIP
41#endif /* IPV6_JOIN_MEMBERSHIP. */
42#endif /* ! IPV6_JOIN_GROUP*/
43
44#ifndef IPV6_LEAVE_GROUP
45#ifdef IPV6_DROP_MEMBERSHIP
46#define IPV6_LEAVE_GROUP IPV6_DROP_MEMBERSHIP
47#endif /* IPV6_DROP_MEMBERSHIP */
48#endif /* ! IPV6_LEAVE_GROUP */
49
ef95122e
DO
50#define MSG_OK 0
51#define MSG_NG 1
52
1eb8ef25 53/* cast macro: XXX - these *must* die, ick ick. */
6452df09 54#define OSPF6_PROCESS(x) ((struct ospf6 *) (x))
55#define OSPF6_AREA(x) ((struct ospf6_area *) (x))
56#define OSPF6_INTERFACE(x) ((struct ospf6_interface *) (x))
57#define OSPF6_NEIGHBOR(x) ((struct ospf6_neighbor *) (x))
58
508e53e2 59/* operation on timeval structure */
8f2c16aa
DL
60#define timerstring(tv, buf, size) \
61 do { \
62 if ((tv)->tv_sec / 60 / 60 / 24) \
63 snprintf (buf, size, "%lldd%02lld:%02lld:%02lld", \
64 (tv)->tv_sec / 60LL / 60 / 24, \
65 (tv)->tv_sec / 60LL / 60 % 24, \
66 (tv)->tv_sec / 60LL % 60, \
67 (tv)->tv_sec % 60LL); \
68 else \
69 snprintf (buf, size, "%02lld:%02lld:%02lld", \
70 (tv)->tv_sec / 60LL / 60 % 24, \
71 (tv)->tv_sec / 60LL % 60, \
72 (tv)->tv_sec % 60LL); \
508e53e2 73 } while (0)
508e53e2 74
a0edf674
DD
75#define threadtimer_string(now, t, buf, size) \
76 do { \
77 struct timeval result; \
78 if (!t) \
79 snprintf(buf, size, "inactive"); \
80 else { \
81 timersub(&t->u.sands, &now, &result); \
82 timerstring(&result, buf, size); \
83 } \
84} while (0)
85
508e53e2 86/* for commands */
87#define OSPF6_AREA_STR "Area information\n"
88#define OSPF6_AREA_ID_STR "Area ID (as an IPv4 notation)\n"
89#define OSPF6_SPF_STR "Shortest Path First tree information\n"
90#define OSPF6_ROUTER_ID_STR "Specify Router-ID\n"
91#define OSPF6_LS_ID_STR "Specify Link State ID\n"
92
718e3744 93#define OSPF6_CMD_CHECK_RUNNING() \
94 if (ospf6 == NULL) \
95 { \
26a429fe 96 vty_out (vty, "OSPFv3 is not running\n"); \
718e3744 97 return CMD_SUCCESS; \
98 }
99
6b0655a2 100
718e3744 101/* Function Prototypes */
6ac29a51 102extern struct route_node *route_prev (struct route_node *node);
718e3744 103
6ac29a51
PJ
104extern void ospf6_debug (void);
105extern void ospf6_init (void);
718e3744 106
107#endif /* OSPF6D_H */
108
508e53e2 109