Adding Face
diff --git a/nlsr-sync-0.0/nlsr_face.h b/nlsr-sync-0.0/nlsr_face.h
new file mode 100644
index 0000000..aae75f8
--- /dev/null
+++ b/nlsr-sync-0.0/nlsr_face.h
@@ -0,0 +1,12 @@
+#ifndef _NLSR_FACE_H_
+#define _NLSR_FACE_H_
+
+#define CCN_FIB_LIFETIME ((~0U) >> 1)
+#define CCN_FIB_MCASTTTL (-1)
+#define OP_REG 0
+#define OP_UNREG 1
+
+int add_ccn_face(struct ccn *h, const char *uri, const char *address, const unsigned int port);
+int delete_ccn_face(struct ccn *h, const char *uri, const char *address, const unsigned int port);
+
+#endif