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 (4 years, 11 months ago) by misho
Branches: bird2, MAIN
CVS tags: v2_0_7p0, HEAD
bird2 ver 2.0.7

/*
 *	BIRD -- Table-to-Table Routing Protocol a.k.a Pipe
 *
 *	(c) 1999 Martin Mares <mj@ucw.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#ifndef _BIRD_PIPE_H_
#define _BIRD_PIPE_H_

struct pipe_config {
  struct proto_config c;
  struct rtable_config *peer;		/* Table we're connected to */
};

struct pipe_proto {
  struct proto p;
  struct channel *pri;
  struct channel *sec;
};

#endif

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