Eric Newberry | 3abeeb8 | 2015-08-06 21:38:36 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 7d3c14b | 2017-08-05 16:34:39 +0000 | [diff] [blame] | 2 | /* |
Teng Liang | 8b6eda9 | 2018-01-25 20:41:54 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Eric Newberry | 3abeeb8 | 2015-08-06 21:38:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Eric Newberry | 3abeeb8 | 2015-08-06 21:38:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #ifndef NDN_CXX_LP_TLV_HPP |
| 23 | #define NDN_CXX_LP_TLV_HPP |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace lp { |
| 27 | namespace tlv { |
| 28 | |
| 29 | /** |
Junxiao Shi | 7d3c14b | 2017-08-05 16:34:39 +0000 | [diff] [blame] | 30 | * \brief TLV-TYPE numbers for NDNLPv2 |
Eric Newberry | 3abeeb8 | 2015-08-06 21:38:36 -0700 | [diff] [blame] | 31 | */ |
| 32 | enum { |
| 33 | LpPacket = 100, |
| 34 | Fragment = 80, |
| 35 | Sequence = 81, |
| 36 | FragIndex = 82, |
| 37 | FragCount = 83, |
| 38 | Nack = 800, |
| 39 | NackReason = 801, |
| 40 | NextHopFaceId = 816, |
Teng Liang | 0296074 | 2017-10-24 00:36:45 -0700 | [diff] [blame] | 41 | IncomingFaceId = 817, |
Eric Newberry | 3abeeb8 | 2015-08-06 21:38:36 -0700 | [diff] [blame] | 42 | CachePolicy = 820, |
| 43 | CachePolicyType = 821, |
Eric Newberry | 5fade68 | 2017-01-21 22:35:47 -0700 | [diff] [blame] | 44 | CongestionMark = 832, |
Eric Newberry | 1de6be6 | 2017-04-03 22:58:41 -0700 | [diff] [blame] | 45 | Ack = 836, |
Teng Liang | 0296074 | 2017-10-24 00:36:45 -0700 | [diff] [blame] | 46 | TxSequence = 840, |
| 47 | NonDiscovery = 844, |
Teng Liang | 8b6eda9 | 2018-01-25 20:41:54 -0700 | [diff] [blame] | 48 | PrefixAnnouncement = 848, |
Eric Newberry | 3abeeb8 | 2015-08-06 21:38:36 -0700 | [diff] [blame] | 49 | }; |
| 50 | |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 51 | enum { |
| 52 | /** |
| 53 | * \brief lower bound of 1-octet header field |
| 54 | */ |
| 55 | HEADER1_MIN = 81, |
| 56 | |
| 57 | /** |
| 58 | * \brief upper bound of 1-octet header field |
| 59 | */ |
| 60 | HEADER1_MAX = 99, |
| 61 | |
| 62 | /** |
| 63 | * \brief lower bound of 3-octet header field |
| 64 | */ |
| 65 | HEADER3_MIN = 800, |
| 66 | |
| 67 | /** |
| 68 | * \brief upper bound of 3-octet header field |
| 69 | */ |
| 70 | HEADER3_MAX = 959 |
| 71 | }; |
| 72 | |
Eric Newberry | 3abeeb8 | 2015-08-06 21:38:36 -0700 | [diff] [blame] | 73 | } // namespace tlv |
| 74 | } // namespace lp |
| 75 | } // namespace ndn |
| 76 | |
| 77 | #endif // NDN_CXX_LP_TLV_HPP |