Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 1 | /* -*- 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 Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 10 | #ifndef NDN_TLV_NFD_HPP |
| 11 | #define NDN_TLV_NFD_HPP |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 12 | |
| 13 | namespace ndn { |
| 14 | namespace tlv { |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 15 | namespace nfd { |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 16 | |
| 17 | enum { |
| 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, |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 27 | |
| 28 | // Face Management Protocol |
Yingdi Yu | d337049 | 2014-02-12 17:17:11 -0800 | [diff] [blame] | 29 | FaceManagementOptions = 108, |
Steve DiBenedetto | 7dedbf4 | 2014-03-10 16:50:40 -0600 | [diff] [blame] | 30 | Uri = 114, |
hilata | 7d160f2 | 2014-03-13 19:51:42 -0500 | [diff] [blame^] | 31 | |
| 32 | // Strategy Choice Protocol |
| 33 | StrategyChoiceOptions = 115, |
| 34 | Strategy = 107, |
Steve DiBenedetto | 7dedbf4 | 2014-03-10 16:50:40 -0600 | [diff] [blame] | 35 | |
| 36 | // Face Status Protocol |
| 37 | FaceStatus = 128, |
| 38 | TotalIncomingInterestCounter = 145, |
| 39 | TotalIncomingDataCounter = 144, |
| 40 | TotalOutgoingInterestCounter = 146, |
| 41 | TotalOutgoingDataCounter = 147, |
| 42 | FaceEvent = 192, |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 43 | FaceEventKind = 193, |
Steve DiBenedetto | 7dedbf4 | 2014-03-10 16:50:40 -0600 | [diff] [blame] | 44 | |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 45 | }; |
| 46 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 47 | enum { |
| 48 | // Local Control Header |
| 49 | LocalControlHeader = 80, |
| 50 | IncomingFaceId = 81, |
| 51 | NextHopFaceId = 82 |
| 52 | }; |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 53 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 54 | } // namespace nfd |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 55 | } // namespace tlv |
hilata | a99e37e | 2014-02-15 23:52:46 -0600 | [diff] [blame] | 56 | |
| 57 | namespace nfd { |
| 58 | |
| 59 | const uint64_t INVALID_FACE_ID = std::numeric_limits<uint64_t>::max(); |
| 60 | |
| 61 | } // namespace nfd |
| 62 | |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 63 | } // namespace ndn |
| 64 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 65 | #endif // NDN_TLV_NFD_HPP |