From 9685deb910c9e7400915209c1924e100b1feb5d5 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 1 Dec 1999 12:00:15 +0000 Subject: `show protocols' now shows time of last state change and protocol-dependent status information (obtained via newly introduced hook protocol->get_status). --- nest/protocol.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'nest/protocol.h') diff --git a/nest/protocol.h b/nest/protocol.h index 8958d07..c77a935 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -11,6 +11,7 @@ #include "lib/lists.h" #include "lib/resource.h" +#include "lib/timer.h" struct iface; struct ifa; @@ -45,6 +46,7 @@ struct protocol { void (*dump_attrs)(struct rte *); /* Dump protocol-dependent attributes */ int (*start)(struct proto *); /* Start the instance */ int (*shutdown)(struct proto *); /* Stop the instance */ + void (*get_status)(struct proto *, byte *buf); /* Get instance status (for `show protocols' command) */ }; void protos_build(void); @@ -98,6 +100,7 @@ struct proto { unsigned proto_state; /* Protocol state machine (see below) */ unsigned core_state; /* Core state machine (see below) */ unsigned core_goal; /* State we want to reach (see below) */ + bird_clock_t last_state_change; /* Time of last state transition */ /* * General protocol hooks: -- cgit v1.2.3