diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-04 18:30:04 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-04 18:30:04 +0200 |
commit | c76ba51a5fc7d61e18213f99d9c09502af0bc192 (patch) | |
tree | e778fef3a0fe4a169ba35f162733904e40756498 /proto/ospf/ospf.h | |
parent | 28de5133ecdcb5b45dc251123047164fbb940e50 (diff) | |
download | bird-c76ba51a5fc7d61e18213f99d9c09502af0bc192.tar bird-c76ba51a5fc7d61e18213f99d9c09502af0bc192.zip |
lsack.c cleaned. Better names for functions and
DIRECT acks can be sent in one packet now.
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index 5144150..56471b6 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -356,7 +356,9 @@ struct ospf_neighbor struct top_graph *lsrth; void *ldbdes; /* Last database description packet */ timer *rxmt_timer; /* RXMT timer */ - list ackl; + list ackl[2]; +#define ACKL_DIRECT 0 +#define ACKL_DELAY 1 timer *ackd_timer; /* Delayed ack timer */ }; |