Alexander Afanasyev | 0553cd5 | 2014-02-18 02:34:45 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 2 | /** |
| 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
Alexander Afanasyev | 0553cd5 | 2014-02-18 02:34:45 -0800 | [diff] [blame] | 5 | * |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 7 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Alexander Afanasyev | 0553cd5 | 2014-02-18 02:34:45 -0800 | [diff] [blame] | 8 | * |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
Alexander Afanasyev | 0553cd5 | 2014-02-18 02:34:45 -0800 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef NDN_TLV_NRD_HPP |
| 14 | #define NDN_TLV_NRD_HPP |
| 15 | |
| 16 | #include "tlv.hpp" |
| 17 | |
| 18 | namespace ndn { |
| 19 | namespace tlv { |
| 20 | namespace nrd { |
| 21 | |
Junxiao Shi | 5f6c74f | 2014-04-18 16:29:44 -0700 | [diff] [blame] | 22 | // \deprecated use NFD RIB Management |
Alexander Afanasyev | 0553cd5 | 2014-02-18 02:34:45 -0800 | [diff] [blame] | 23 | enum { |
| 24 | PrefixRegOptions = 101, |
| 25 | FaceId = 102, |
| 26 | Flags = 103, |
| 27 | Cost = 104, |
| 28 | ExpirationPeriod = 105, |
| 29 | StrategyName = 106, |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 30 | Protocol = 107 |
Alexander Afanasyev | 0553cd5 | 2014-02-18 02:34:45 -0800 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | enum { |
| 34 | NDN_FORW_CHILD_INHERIT = 1, |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 35 | NDN_FORW_CAPTURE = 2 |
Alexander Afanasyev | 0553cd5 | 2014-02-18 02:34:45 -0800 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | } // namespace nrd |
| 39 | } // namespace tlv |
| 40 | } // namespace ndn |
| 41 | |
| 42 | #endif // NDN_TLV_NRD_HPP |