blob: 5d812085b889a4e18c8077cf9299bed10b07d7d2 [file] [log] [blame]
akmhoque59980a52012-08-09 12:36:09 -05001#ifndef _NLSR_NDN_H_
2#define _NLSR_NDN_H_
3
akmhoqued79438d2012-08-27 13:31:42 -05004int appendLifetime(struct ccn_charbuf *cb, int lifetime);
akmhoque03004e62012-09-06 01:12:28 -05005void get_nbr(struct name_prefix *nbr,struct ccn_closure *selfp, struct ccn_upcall_info *info);
6void get_lsa_identifier(struct name_prefix *lsaId,struct ccn_closure *selfp, struct ccn_upcall_info *info,int offset);
akmhoque888c7732013-02-20 11:28:37 -06007//void get_lsdb_version(char *lsdb_version,struct ccn_closure *selfp, struct ccn_upcall_info *info );
8//int get_ls_type(struct ccn_closure *selfp, struct ccn_upcall_info *info);
akmhoque03004e62012-09-06 01:12:28 -05009
akmhoqueb77b95f2013-02-08 12:28:47 -060010enum ccn_upcall_res incoming_interest(struct ccn_closure *selfp, enum ccn_upcall_kind kind, struct ccn_upcall_info *info);
akmhoque1c9b92f2012-08-13 10:57:50 -050011void process_incoming_interest(struct ccn_closure *selfp, struct ccn_upcall_info *info);
akmhoqued79438d2012-08-27 13:31:42 -050012void process_incoming_interest_info(struct ccn_closure *selfp, struct ccn_upcall_info *info);
akmhoque53f64222012-09-05 13:57:51 -050013
akmhoque03004e62012-09-06 01:12:28 -050014enum ccn_upcall_res incoming_content(struct ccn_closure* selfp, enum ccn_upcall_kind kind, struct ccn_upcall_info* info);
akmhoque53f64222012-09-05 13:57:51 -050015void process_incoming_content(struct ccn_closure *selfp, struct ccn_upcall_info* info);
16void process_incoming_content_info(struct ccn_closure *selfp, struct ccn_upcall_info* info);
akmhoque59980a52012-08-09 12:36:09 -050017
akmhoquecb017752012-08-16 11:03:45 -050018void process_incoming_timed_out_interest(struct ccn_closure* selfp, struct ccn_upcall_info* info);
akmhoqued79438d2012-08-27 13:31:42 -050019void process_incoming_timed_out_interest_info(struct ccn_closure* selfp, struct ccn_upcall_info* info);
akmhoquecb017752012-08-16 11:03:45 -050020
akmhoqued79438d2012-08-27 13:31:42 -050021int send_info_interest(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags);
akmhoque53f64222012-09-05 13:57:51 -050022void send_info_interest_to_neighbor(struct name_prefix *nbr);
23
akmhoque59980a52012-08-09 12:36:09 -050024
akmhoque9635b852013-04-04 23:29:48 -050025
26void process_incoming_interest_lsdb(struct ccn_closure *selfp, struct ccn_upcall_info *info);
27void process_incoming_interest_lsa(struct ccn_closure *selfp, struct ccn_upcall_info *info);
28
29int send_lsdb_interest(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags);
30
akmhoque59980a52012-08-09 12:36:09 -050031#endif