diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2013-06-03 17:02:00 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2013-06-03 17:02:00 +0000 |
commit | ee519c8e6b33a351bcb263ad82a98963968850d2 (patch) | |
tree | 4f2e783220a37f5bf82e47c7562bffc3185b1885 /usr.sbin/ldpd/lde.h | |
parent | e26d12b972c48d1484901452ba6eca2553f787f9 (diff) |
Remove the IMSG_NEIGHBOR_CHANGE message
Unlike OSPF, LDP has no concept of intermediate states. A session is
either operational or not operational as far as the label distribution
engine (lde) is concerned. In this case, the IMSG_NEIGHBOR_UP and
IMSG_NEIGHBOR_DOWN messages are enough.
Diff by Renato Westphal
Diffstat (limited to 'usr.sbin/ldpd/lde.h')
-rw-r--r-- | usr.sbin/ldpd/lde.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/ldpd/lde.h b/usr.sbin/ldpd/lde.h index c74c551b06c..a46b53697bd 100644 --- a/usr.sbin/ldpd/lde.h +++ b/usr.sbin/ldpd/lde.h @@ -1,4 +1,4 @@ -/* $OpenBSD: lde.h,v 1.19 2013/06/01 18:47:07 claudio Exp $ */ +/* $OpenBSD: lde.h,v 1.20 2013/06/03 17:01:59 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -71,8 +71,6 @@ struct lde_nbr { TAILQ_HEAD(, lde_nbr_address) addr_list; u_int32_t peerid; - unsigned int ifindex; - int state; }; struct rt_lsp { |