aboutsummaryrefslogtreecommitdiffstats
path: root/icnet/ccnx/icnet_ccnx_key_locator_type.h
blob: 477870d3b546320827435371190ed4a2f463272d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Created by msardara on 16/02/2017.
//

#ifndef ICNET_CCNX_KEY_LOCATOR_TYPE_H_
#define ICNET_CCNX_KEY_LOCATOR_TYPE_H_

namespace icnet {

namespace ccnx {

enum Type {
  NAME = 0, KEY_DIGEST = 1, UNKNOWN = 255
};

typedef enum Type KeyLocatorType;

} // end namespace ccnx

} // end namespace icnet

#endif // ICNET_CCNX_KEY_LOCATOR_TYPE_H_