blob: 3c2abced68cfa42504b1f2999d7e57aa75a232a0 [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
8#define NDN_DATA_TYPES_H
9
10#ifdef __cplusplus
11extern "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
23#ifdef __cplusplus
24}
25#endif
26
27#endif