blob: 0cd71e8ea2837e42a90d9d4c8174a809e8e5a5f3 [file] [log] [blame]
#ifndef _NLSR_H_
#define _NLSR_H_
#define LSA_ADJ_TYPE 1
#define LSA_NAME_TYPE 2
#define LSDB_SYNCH_INTERVAL 300
#define INTEREST_RETRY 3
#define INTEREST_RESEND_TIME 15
struct name_prefix
{
char *name;
int length;
};
struct ndn_neighbor
{
struct ccn_charbuf *neighbor;
int face;
int status;
long int last_lsdb_version;
int info_interest_timed_out;
struct hashtb *lsa_update_queue;
};
struct linkStateDatabase
{
long int version;
struct hashtb *adj_lsdb;
struct hashtb *name_lsdb;
};
struct nlsr
{
struct ccn_closure in_interest;
struct ccn_closure in_content;
struct ccn_schedule *sched;
struct ccn_scheduled_event *event;
struct ccn_scheduled_event *event_send_lsdb_interest;
struct ccn_scheduled_event *event_send_info_interest;
struct ccn_scheduled_event *event_build_name_lsa;
struct ccn_scheduled_event *event_build_adj_lsa;
struct hashtb *adl;
struct hashtb *npl;
struct ccn *ccn;
char *router_name;
struct linkStateDatabase *lsdb;
int is_synch_init;
long int nlsa_id;
int adj_build_flag;
long int adj_build_count;
long int lsdb_synch_interval;
int interest_retry;
long int interest_resend_time;
};
struct nlsr *nlsr;
void init_nlsr(void);
void ndn_rtr_gettime(const struct ccn_gettime *self, struct ccn_timeval *result);
void process_command_router_name(char *command);
void process_command_ccnname(char *command);
void process_command_ccnneighbor(char *command);
void process_command_lsdb_synch_interval(char *command);
void process_command_interest_retry(char *command);
void process_command_interest_resend_time(char *command);
void process_conf_command(char *command);
int readConfigFile(const char *filename);
void add_name_prefix_to_npl(struct name_prefix *name_prefix);
void print_name_prefix_from_npl(void);
void nlsr_destroy( void );
#endif