blob: 668786bf2a707110565a73e29b2937bc4b3334c4 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/**
2 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NDN_DATA_TYPES_H
Jeff Thompsone589c3f2013-10-12 17:30:50 -07008#define NDN_DATA_TYPES_H
Jeff Thompson25b4e612013-10-10 16:03:24 -07009
Jeff Thompsone589c3f2013-10-12 17:30:50 -070010#ifdef __cplusplus
Jeff Thompson25b4e612013-10-10 16:03:24 -070011extern "C" {
12#endif
13
14typedef enum {
15 ndn_ContentType_DATA = 0,
16 ndn_ContentType_ENCR = 1,
17 ndn_ContentType_GONE = 2,
18 ndn_ContentType_KEY = 3,
19 ndn_ContentType_LINK = 4,
20 ndn_ContentType_NACK = 5
21} ndn_ContentType;
22
Jeff Thompsone589c3f2013-10-12 17:30:50 -070023#ifdef __cplusplus
Jeff Thompson25b4e612013-10-10 16:03:24 -070024}
25#endif
26
27#endif