diff options
author | Ondrej Filip <feela@network.cz> | 2000-02-08 19:24:22 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-02-08 19:24:22 +0000 |
commit | d3cb698053e14b3d35750d92389c34b71503bfc6 (patch) | |
tree | 5d291f86618bb7e7c823fba01709a5436f9195ce /proto/ospf/topology.h | |
parent | c7b915d68c9475ba3a23c99ec7f796ec0a53978b (diff) |
LSA type changed from u16 to u8.
Diffstat (limited to 'proto/ospf/topology.h')
-rw-r--r-- | proto/ospf/topology.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/proto/ospf/topology.h b/proto/ospf/topology.h index b35c4543..22b82138 100644 --- a/proto/ospf/topology.h +++ b/proto/ospf/topology.h @@ -13,8 +13,9 @@ struct top_hash_entry { /* Index for fast mapping (type,rtrid,LSid)->vertex */ struct top_hash_entry *next; /* Next in hash chain */ struct top_vertex *vertex; u32 lsa_id, rtr_id; - u16 lsa_type; - u16 pad; + u8 lsa_type; + u16 pad1; + u8 pad2; }; struct top_graph { |