1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

`show protocols' now shows time of last state change and protocol-dependent

status information (obtained via newly introduced hook protocol->get_status).
This commit is contained in:
Martin Mares
1999-12-01 12:00:15 +00:00
parent 5954dcfab7
commit 9685deb910
2 changed files with 14 additions and 15 deletions

View File

@@ -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: