blob: 21826e9f77cb8c66b7a51ada0ee8ea72302cbba3 [file] [log] [blame]
#ifndef _NLSR_LSDB_H_
#define _NLSR_LSDB_H_
struct link
{
struct charbuf *nbr;
int face;
int metric;
};
struct adj_lsa
{
unsigned char ls_type;
char orig_time[15];
struct charbuf *orig_router;
int no_link;
struct link *links;
};
struct name_lsa
{
unsigned char ls_type;
char orig_time[15];
long ls_id;
struct charbuf *orig_router;
unsigned char isValid;
struct charbuf *name_prefix;
};
#endif