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, |
| 27 | Strategy = 107, |
| 28 | |
| 29 | // Face Management Protocol |
Yingdi Yu | d337049 | 2014-02-12 17:17:11 -0800 | [diff] [blame] | 30 | FaceManagementOptions = 108, |
Steve DiBenedetto | 7dedbf4 | 2014-03-10 16:50:40 -0600 | [diff] [blame] | 31 | 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 DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame^] | 40 | FaceEventKind = 193, |
Steve DiBenedetto | 7dedbf4 | 2014-03-10 16:50:40 -0600 | [diff] [blame] | 41 | |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 42 | }; |
| 43 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 44 | enum { |
| 45 | // Local Control Header |
| 46 | LocalControlHeader = 80, |
| 47 | IncomingFaceId = 81, |
| 48 | NextHopFaceId = 82 |
| 49 | }; |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 50 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 51 | } // namespace nfd |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 52 | } // namespace tlv |
hilata | a99e37e | 2014-02-15 23:52:46 -0600 | [diff] [blame] | 53 | |
| 54 | namespace nfd { |
| 55 | |
| 56 | const uint64_t INVALID_FACE_ID = std::numeric_limits<uint64_t>::max(); |
| 57 | |
| 58 | } // namespace nfd |
| 59 | |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 60 | } // namespace ndn |
| 61 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 62 | #endif // NDN_TLV_NFD_HPP |