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 | |
| 10 | #ifndef NDN_TLV_NFD_CONTROL_HPP |
| 11 | #define NDN_TLV_NFD_CONTROL_HPP |
| 12 | |
| 13 | namespace ndn { |
| 14 | namespace tlv { |
| 15 | namespace nfd_control { |
| 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, |
| 31 | Uri = 114 |
Alexander Afanasyev | eaf105c | 2014-01-30 17:40:24 -0800 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | |
| 35 | } // namespace nfd_control |
| 36 | } // namespace tlv |
| 37 | } // namespace ndn |
| 38 | |
| 39 | #endif // NDN_TLV_NFD_CONTROL_HPP |