From 42b3daa09cda8a4b80661177d3bf74b9258b0b88 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 5 Jun 2000 09:51:24 +0000 Subject: Description of protocol module moved to where it belongs. If documentation of standard modules is stored in their source, such auxilliary files should be as well. --- nest/Doc | 2 +- nest/proto.sgml | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 92 insertions(+), 1 deletion(-) create mode 100644 nest/proto.sgml (limited to 'nest') diff --git a/nest/Doc b/nest/Doc index 7395e75..8cb7310 100644 --- a/nest/Doc +++ b/nest/Doc @@ -2,7 +2,7 @@ H Core S rt-fib.c S rt-table.c S rt-attr.c -D prog-proto.sgml +D proto.sgml S proto.c S proto-hooks.c S iface.c diff --git a/nest/proto.sgml b/nest/proto.sgml new file mode 100644 index 0000000..45ef88d --- /dev/null +++ b/nest/proto.sgml @@ -0,0 +1,91 @@ + + +Routing protocols + +Introduction + +

The routing protocols are the BIRD's heart and a fine amount of code +is dedicated to their management and for providing support functions to them. +(-: Actually, this is the reason why the directory with sources of the core +code is called When talking about protocols, one need to distinguish between A protocol is represented by a Each instance has its own The protocol hooks are described in the next chapter, for more information about +configuration of protocols, please refer to the configuration chapter and also +to the description of the Protocol states + +

As startup and shutdown of each protocol are complex processes which can be affected +by lots of external events (user's actions, reconfigurations, behaviour of neighboring routers etc.), +we have decided to supervise them by a pair of simple state machines -- the protocol +state machine and a core state machine. + +

The + + +

Unless the protocol is in the At any time, the core code can ask the protocol to shut down by calling its stop() hook. + +

The + + +Functions of the protocol module + +

The protocol module provides the following functions: -- cgit v1.2.3