blob: ec1b60a809ceff0a1b3f73f7c05531aa8c51ecb8 [file] [log] [blame]
Alexander Afanasyeveaf105c2014-01-30 17:40:24 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 *
5 * BSD license, See the LICENSE file for more information
6 *
7 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
8 */
9
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -080010#ifndef NDN_TLV_NFD_HPP
11#define NDN_TLV_NFD_HPP
Alexander Afanasyeveaf105c2014-01-30 17:40:24 -080012
13namespace ndn {
14namespace tlv {
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -080015namespace nfd {
Alexander Afanasyeveaf105c2014-01-30 17:40:24 -080016
17enum {
18 // ControlResponse
19 ControlResponse = 101,
20 StatusCode = 102,
21 StatusText = 103,
22
23 // FIB Management Protocol
24 FibManagementOptions = 104,
25 FaceId = 105,
26 Cost = 106,
27 Strategy = 107,
28
29 // Face Management Protocol
Yingdi Yud3370492014-02-12 17:17:11 -080030 FaceManagementOptions = 108,
Steve DiBenedetto7dedbf42014-03-10 16:50:40 -060031 Uri = 114,
32
33 // Face Status Protocol
34 FaceStatus = 128,
35 TotalIncomingInterestCounter = 145,
36 TotalIncomingDataCounter = 144,
37 TotalOutgoingInterestCounter = 146,
38 TotalOutgoingDataCounter = 147,
39 FaceEvent = 192,
Steve DiBenedettoc145d492014-03-11 16:35:45 -060040 FaceEventKind = 193,
Steve DiBenedetto7dedbf42014-03-10 16:50:40 -060041
Alexander Afanasyeveaf105c2014-01-30 17:40:24 -080042};
43
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -080044enum {
45 // Local Control Header
46 LocalControlHeader = 80,
47 IncomingFaceId = 81,
48 NextHopFaceId = 82
49};
Alexander Afanasyeveaf105c2014-01-30 17:40:24 -080050
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -080051} // namespace nfd
Alexander Afanasyeveaf105c2014-01-30 17:40:24 -080052} // namespace tlv
hilataa99e37e2014-02-15 23:52:46 -060053
54namespace nfd {
55
56const uint64_t INVALID_FACE_ID = std::numeric_limits<uint64_t>::max();
57
58} // namespace nfd
59
Alexander Afanasyeveaf105c2014-01-30 17:40:24 -080060} // namespace ndn
61
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -080062#endif // NDN_TLV_NFD_HPP