diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2005-05-27 02:01:54 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2005-05-27 02:01:54 +0000 |
commit | 4c762284c3b1a5ec55501eef3625ae33fb687c5b (patch) | |
tree | 81c4d232e4114c48c238c323746db0509dcd0cb6 /usr.sbin | |
parent | d1640d7563178c6fe6d97a0442af8de585a279e3 (diff) |
Preparation for upcoming virtual link support.
ok claudio@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospfd/rde.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/usr.sbin/ospfd/rde.h b/usr.sbin/ospfd/rde.h index e67036f00e5..68855ae06bb 100644 --- a/usr.sbin/ospfd/rde.h +++ b/usr.sbin/ospfd/rde.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.h,v 1.16 2005/05/24 06:55:21 claudio Exp $ */ +/* $OpenBSD: rde.h,v 1.17 2005/05/27 02:01:53 norby Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -83,6 +83,14 @@ struct rt_node { u_int8_t invalid; }; +struct abr_rtr { + struct in_addr addr; + struct in_addr abr_id; + struct in_addr dst_ip; + struct in_addr area; + u_int16_t metric; +}; + /* rde.c */ pid_t rde(struct ospfd_conf *, int [2], int [2], int [2]); int rde_imsg_compose_parent(int, pid_t, void *, u_int16_t); |