akmhoque | 7483128 | 2012-12-14 12:09:34 -0600 | [diff] [blame] | 1 | #ifndef _NLSR_FACE_H_ |
| 2 | #define _NLSR_FACE_H_ |
| 3 | |
| 4 | #define CCN_FIB_LIFETIME ((~0U) >> 1) |
| 5 | #define CCN_FIB_MCASTTTL (-1) |
| 6 | #define OP_REG 0 |
| 7 | #define OP_UNREG 1 |
| 8 | |
akmhoque | 596f708 | 2013-02-04 13:34:13 -0600 | [diff] [blame] | 9 | int add_ccn_face(struct ccn *h, const char *uri, const char *address, const unsigned int port,unsigned int tunnel_proto); |
| 10 | int delete_ccn_face(struct ccn *h, const char *uri, const char *address, const unsigned int port,unsigned int tunnel_proto); |
akmhoque | 7483128 | 2012-12-14 12:09:34 -0600 | [diff] [blame] | 11 | |
| 12 | #endif |