akmhoque | 7c64d80 | 2013-03-05 10:18:37 -0600 | [diff] [blame] | 1 | #ifndef _NLSR_KM_UTIL_H_ |
| 2 | #define _NLSR_KM_UTIL_H_ |
| 3 | |
| 4 | int |
| 5 | contain_key_name(const unsigned char *ccnb, |
| 6 | struct ccn_parsed_ContentObject *pco); |
| 7 | |
| 8 | struct ccn_charbuf * |
| 9 | get_key_name(const unsigned char *ccnb, |
| 10 | struct ccn_parsed_ContentObject *pco); |
| 11 | |
| 12 | int |
| 13 | check_for_name_component_in_name(const struct ccn_charbuf *name, |
| 14 | const struct ccn_indexbuf *indx, |
| 15 | const char *component); |
| 16 | int |
| 17 | check_for_tag_component_in_name(const struct ccn_charbuf *name, |
| 18 | const struct ccn_indexbuf *indx, |
| 19 | const char *component); |
| 20 | enum key_type |
| 21 | get_key_type_from_key_name(struct ccn_charbuf *keyname); |
| 22 | |
akmhoque | 7adb277 | 2013-03-05 16:30:59 -0600 | [diff] [blame] | 23 | int |
| 24 | get_orig_router_from_key_name(struct ccn_charbuf *orig_router, |
| 25 | struct ccn_charbuf *name); |
| 26 | |
akmhoque | 7c64d80 | 2013-03-05 10:18:37 -0600 | [diff] [blame] | 27 | |
| 28 | int |
| 29 | appendLifetime(struct ccn_charbuf *cb, int lifetime); |
| 30 | |
| 31 | #endif |