File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / bird2 / proto / pipe / pipe.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 21 16:03:57 2019 UTC (5 years, 5 months ago) by misho
Branches: bird2, MAIN
CVS tags: v2_0_7p0, HEAD
bird2 ver 2.0.7

    1: /*
    2:  *	BIRD -- Table-to-Table Routing Protocol a.k.a Pipe
    3:  *
    4:  *	(c) 1999 Martin Mares <mj@ucw.cz>
    5:  *
    6:  *	Can be freely distributed and used under the terms of the GNU GPL.
    7:  */
    8: 
    9: #ifndef _BIRD_PIPE_H_
   10: #define _BIRD_PIPE_H_
   11: 
   12: struct pipe_config {
   13:   struct proto_config c;
   14:   struct rtable_config *peer;		/* Table we're connected to */
   15: };
   16: 
   17: struct pipe_proto {
   18:   struct proto p;
   19:   struct channel *pri;
   20:   struct channel *sec;
   21: };
   22: 
   23: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>