blob: 1e342848a9889f4f336848a29b22f304deeaa6fe [file] [log] [blame]
akmhoque8fdd6412012-12-04 15:05:33 -06001#ifndef _NLSR_NDN_H_
2#define _NLSR_NDN_H_
3
4int appendLifetime(struct ccn_charbuf *cb, int lifetime);
5void 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);
7void get_lsdb_version(char *lsdb_version,struct ccn_closure *selfp, struct ccn_upcall_info *info );
8int get_ls_type(struct ccn_closure *selfp, struct ccn_upcall_info *info);
9
akmhoquefd255f42013-01-29 10:41:31 -060010enum ccn_upcall_res incoming_interest(struct ccn_closure *selfp, enum ccn_upcall_kind kind, struct ccn_upcall_info *info);
akmhoque8fdd6412012-12-04 15:05:33 -060011void process_incoming_interest(struct ccn_closure *selfp, struct ccn_upcall_info *info);
12void process_incoming_interest_info(struct ccn_closure *selfp, struct ccn_upcall_info *info);
akmhoque8fdd6412012-12-04 15:05:33 -060013
14enum ccn_upcall_res incoming_content(struct ccn_closure* selfp, enum ccn_upcall_kind kind, struct ccn_upcall_info* info);
15void 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);
akmhoque8fdd6412012-12-04 15:05:33 -060017
18void process_incoming_timed_out_interest(struct ccn_closure* selfp, struct ccn_upcall_info* info);
19void process_incoming_timed_out_interest_info(struct ccn_closure* selfp, struct ccn_upcall_info* info);
akmhoque8fdd6412012-12-04 15:05:33 -060020
21int send_info_interest(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags);
22void send_info_interest_to_neighbor(struct name_prefix *nbr);
23
akmhoque8fdd6412012-12-04 15:05:33 -060024
25#endif