blob: 27b4adc207feb05fa41f14f0da278466b71d954f [file] [log] [blame]
akmhoque59980a52012-08-09 12:36:09 -05001#ifndef _NLSR_H_
2#define _NLSR_H_
3
akmhoque03004e62012-09-06 01:12:28 -05004
akmhoqued79438d2012-08-27 13:31:42 -05005#define LSDB_SYNCH_INTERVAL 300
6#define INTEREST_RETRY 3
7#define INTEREST_RESEND_TIME 15
akmhoque59980a52012-08-09 12:36:09 -05008
akmhoque8c50d0d2012-08-09 13:38:03 -05009struct name_prefix
10{
11 char *name;
12 int length;
13};
14
akmhoque07dd8cc2012-08-16 10:23:01 -050015struct linkStateDatabase
16{
akmhoque902d57e2012-08-17 09:24:38 -050017 struct hashtb *name_lsdb;
akmhoque03004e62012-09-06 01:12:28 -050018 struct hashtb *adj_lsdb;
19 char *lsdb_version;
akmhoque07dd8cc2012-08-16 10:23:01 -050020};
21
akmhoque59980a52012-08-09 12:36:09 -050022struct nlsr
23{
24
25 struct ccn_closure in_interest;
26 struct ccn_closure in_content;
27 struct ccn_schedule *sched;
28 struct ccn_scheduled_event *event;
akmhoque1c9b92f2012-08-13 10:57:50 -050029 struct ccn_scheduled_event *event_send_lsdb_interest;
akmhoqued79438d2012-08-27 13:31:42 -050030 struct ccn_scheduled_event *event_send_info_interest;
31 struct ccn_scheduled_event *event_build_name_lsa;
32 struct ccn_scheduled_event *event_build_adj_lsa;
akmhoque59980a52012-08-09 12:36:09 -050033
34 struct hashtb *adl;
35 struct hashtb *npl;
36
akmhoque07dd8cc2012-08-16 10:23:01 -050037 struct linkStateDatabase *lsdb;
38
akmhoque03004e62012-09-06 01:12:28 -050039 struct ccn *ccn;
40 char *router_name;
41
42
43
akmhoque59980a52012-08-09 12:36:09 -050044 int is_synch_init;
akmhoquef71d9082012-08-22 12:51:53 -040045 long int nlsa_id;
akmhoqued79438d2012-08-27 13:31:42 -050046 int adj_build_flag;
47 long int adj_build_count;
akmhoque53f64222012-09-05 13:57:51 -050048 int is_build_adj_lsa_sheduled;
49 int is_send_lsdb_interest_scheduled;
akmhoqued79438d2012-08-27 13:31:42 -050050
51 long int lsdb_synch_interval;
52 int interest_retry;
53 long int interest_resend_time;
akmhoque42098b12012-08-27 22:54:23 -050054
55 int semaphor;
akmhoqued79438d2012-08-27 13:31:42 -050056
akmhoque59980a52012-08-09 12:36:09 -050057};
58
59struct nlsr *nlsr;
60
akmhoque59980a52012-08-09 12:36:09 -050061void process_command_ccnneighbor(char *command);
akmhoque03004e62012-09-06 01:12:28 -050062void process_command_ccnname(char *command);
akmhoqued79438d2012-08-27 13:31:42 -050063void process_command_lsdb_synch_interval(char *command);
64void process_command_interest_retry(char *command);
65void process_command_interest_resend_time(char *command);
akmhoque59980a52012-08-09 12:36:09 -050066void process_conf_command(char *command);
67int readConfigFile(const char *filename);
68
akmhoque03004e62012-09-06 01:12:28 -050069void init_nlsr(void);
akmhoque386081b2012-08-10 10:53:21 -050070void nlsr_destroy( void );
akmhoque03004e62012-09-06 01:12:28 -050071void nlsr_stop_signal_handler(int sig);
akmhoque386081b2012-08-10 10:53:21 -050072
akmhoque59980a52012-08-09 12:36:09 -050073#endif