#define OSPF_TYPE_UMD 0
#define OSPF_TYPE_HELLO 1
#define OSPF_TYPE_DB 2
#define OSPF_TYPE_LSR 3
#define OSPF_TYPE_LSU 4
#define OSPF_TYPE_LSA 5
#define OSPF_TYPE_MAX 6
#define OSPF_OPTION_T 0x01
#define OSPF_OPTION_E 0x02
#define OSPF_OPTION_MC 0x04
#define OSPF_AUTH_NONE 0
#define OSPF_AUTH_SIMPLE 1
#define OSPF_AUTH_MD5 2
#define OSPF_AUTH_MD5_LEN 16
#define OSPF_DB_INIT 0x04
#define OSPF_DB_MORE 0x02
#define OSPF_DB_MASTER 0x01
#define LS_TYPE_ROUTER 1
#define LS_TYPE_NETWORK 2
#define LS_TYPE_SUM_IP 3
#define LS_TYPE_SUM_ABR 4
#define LS_TYPE_ASE 5
#define LS_TYPE_GROUP 6
#define LS_TYPE_MAX 7
#define RLA_TYPE_ROUTER 1
#define RLA_TYPE_TRANSIT 2
#define RLA_TYPE_STUB 3
#define RLA_TYPE_VIRTUAL 4
#define RLA_FLAG_B 0x01
#define RLA_FLAG_E 0x02
#define RLA_FLAG_W1 0x04
#define RLA_FLAG_W2 0x08
#define SLA_MASK_TOS 0x7f000000
#define SLA_MASK_METRIC 0x00ffffff
#define SLA_SHIFT_TOS 24
#define ASLA_FLAG_EXTERNAL 0x80000000
#define ASLA_MASK_TOS 0x7f000000
#define ASLA_SHIFT_TOS 24
#define ASLA_MASK_METRIC 0x00ffffff
#define MCLA_VERTEX_ROUTER 1
#define MCLA_VERTEX_NETWORK 2
struct lsa_hdr {
u_short ls_age;
u_char ls_options;
u_char ls_type;
struct in_addr ls_stateid;
struct in_addr ls_router;
u_int32_t ls_seq;
u_short ls_chksum;
u_short ls_length;
} ;
struct lsa {
struct lsa_hdr ls_hdr;
union {
struct {
u_char rla_flags;
u_char rla_zero[1];
u_short rla_count;
struct rlalink {
struct in_addr link_id;
struct in_addr link_data;
u_char link_type;
u_char link_toscount;
u_short link_tos0metric;
} rla_link[1];
} un_rla;
struct {
struct in_addr nla_mask;
struct in_addr nla_router[1];
} un_nla;
struct {
struct in_addr sla_mask;
u_int32_t sla_tosmetric[1];
} un_sla;
struct {
struct in_addr asla_mask;
struct aslametric {
u_int32_t asla_tosmetric;
struct in_addr asla_forward;
u_int32_t asla_tag;
} asla_metric[1];
} un_asla;
struct mcla {
u_int32_t mcla_vtype;
struct in_addr mcla_vid;
} un_mcla[1];
} lsa_un;
} ;
struct tos_metric {
u_char tos_type;
u_char tos_zero;
u_short tos_metric;
} ;
#define OSPF_AUTH_SIZE 8
struct ospfhdr {
u_char ospf_version;
u_char ospf_type;
u_short ospf_len;
struct in_addr ospf_routerid;
struct in_addr ospf_areaid;
u_short ospf_chksum;
u_short ospf_authtype;
u_char ospf_authdata[OSPF_AUTH_SIZE];
union {
struct {
struct in_addr hello_mask;
u_short hello_helloint;
u_char hello_options;
u_char hello_priority;
u_int32_t hello_deadint;
struct in_addr hello_dr;
struct in_addr hello_bdr;
struct in_addr hello_neighbor[1];
} un_hello;
struct {
u_int16_t db_mtu;
u_char db_options;
u_char db_flags;
u_int32_t db_seq;
struct lsa_hdr db_lshdr[1];
} un_db;
struct lsr {
u_int32_t ls_type;
struct in_addr ls_stateid;
struct in_addr ls_router;
} un_lsr[1];
struct {
u_int32_t lsu_count;
struct lsa lsu_lsa[1];
} un_lsu;
struct {
struct lsa_hdr lsa_lshdr[1];
} un_lsa ;
} ospf_un ;
} ;
struct ospf_md5_authdata {
uint16_t auth_md5_offset;
uint8_t auth_keyid;
uint8_t auth_len;
uint32_t auth_seq;
};
#define ospf_hello ospf_un.un_hello
#define ospf_db ospf_un.un_db
#define ospf_lsr ospf_un.un_lsr
#define ospf_lsu ospf_un.un_lsu
#define ospf_lsa ospf_un.un_lsa