blob: 24e1cd1bf8f45ca59478ae1d6966742b1e2853d3 [file] [log] [blame]
akmhoque59980a52012-08-09 12:36:09 -05001#ifndef _NLSR_NDN_H_
2#define _NLSR_NDN_H_
3
akmhoque1c9b92f2012-08-13 10:57:50 -05004int send_lsdb_interest(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags);
5
akmhoque59980a52012-08-09 12:36:09 -05006enum 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 -05007void process_incoming_interest(struct ccn_closure *selfp, struct ccn_upcall_info *info);
akmhoque59980a52012-08-09 12:36:09 -05008
9
10enum ccn_upcall_res incoming_content(struct ccn_closure* selfp, enum ccn_upcall_kind kind, struct ccn_upcall_info* info);
11
12#endif
13