summaryrefslogtreecommitdiffstats
path: root/ospfd/ospfd.h
diff options
context:
space:
mode:
authorpaul <paul>2005-11-26 13:31:11 +0000
committerpaul <paul>2005-11-26 13:31:11 +0000
commitc9c93d50cc9cae2f7878434431eafab8f7ee8d89 (patch)
treef027b74dc63f5716169bdfcdaedf7980abb58d2a /ospfd/ospfd.h
parent00c290e02edd6c906b669de9f31a45d14ed8bec0 (diff)
downloadquagga-c9c93d50cc9cae2f7878434431eafab8f7ee8d89.tar.bz2
quagga-c9c93d50cc9cae2f7878434431eafab8f7ee8d89.tar.xz
[ospfd] rename graceful to deferred, fix a tiny compile warning.
2005-11-26 Paul Jakma <paul.jakma@sun.com> * (general) s/graceful/deferred/ in all files, the former term is confusing wrt OSPF Graceful-Restart. * ospfd.c: (ospf_deferred_shutdown_check) dont return a function which returns void. SOS complains about this. (ospf_finish)
Diffstat (limited to 'ospfd/ospfd.h')
-rw-r--r--ospfd/ospfd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospfd.h b/ospfd/ospfd.h
index ebacc1b2..f2a61094 100644
--- a/ospfd/ospfd.h
+++ b/ospfd/ospfd.h
@@ -150,7 +150,7 @@ struct ospf_master
/* Various OSPF global configuration. */
u_char options;
-#define OSPF_MASTER_SHUTDOWN (1 << 0) /* flag for ospf_finish / graceful-shutdown */
+#define OSPF_MASTER_SHUTDOWN (1 << 0) /* deferred-shutdown */
};
/* OSPF instance structure. */
@@ -258,7 +258,7 @@ struct ospf
#endif /* HAVE_OPAQUE_LSA */
struct thread *t_maxage; /* MaxAge LSA remover timer. */
struct thread *t_maxage_walker; /* MaxAge LSA checking timer. */
- struct thread *t_graceful_shutdown; /* Graceful/stub-router shutdown timer*/
+ struct thread *t_deferred_shutdown; /* deferred/stub-router shutdown timer*/
struct thread *t_write;
struct thread *t_read;