blob: bb88967c47400fe931b1c59947c9f4465bdf8c47 [file] [log] [blame]
Eric Newberry3abeeb82015-08-06 21:38:36 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi7d3c14b2017-08-05 16:34:39 +00002/*
Teng Liang8b6eda92018-01-25 20:41:54 -07003 * Copyright (c) 2013-2018 Regents of the University of California.
Eric Newberry3abeeb82015-08-06 21:38:36 -07004 *
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 Newberry3abeeb82015-08-06 21:38:36 -070020 */
21
22#ifndef NDN_CXX_LP_TLV_HPP
23#define NDN_CXX_LP_TLV_HPP
24
25namespace ndn {
26namespace lp {
27namespace tlv {
28
29/**
Junxiao Shi7d3c14b2017-08-05 16:34:39 +000030 * \brief TLV-TYPE numbers for NDNLPv2
Eric Newberry3abeeb82015-08-06 21:38:36 -070031 */
32enum {
33 LpPacket = 100,
34 Fragment = 80,
35 Sequence = 81,
36 FragIndex = 82,
37 FragCount = 83,
Spyridon Mastorakisd31b8ef2016-12-06 15:21:44 -080038 HopCountTag = 84,
Eric Newberry3abeeb82015-08-06 21:38:36 -070039 Nack = 800,
40 NackReason = 801,
41 NextHopFaceId = 816,
Teng Liang02960742017-10-24 00:36:45 -070042 IncomingFaceId = 817,
Eric Newberry3abeeb82015-08-06 21:38:36 -070043 CachePolicy = 820,
44 CachePolicyType = 821,
Eric Newberry5fade682017-01-21 22:35:47 -070045 CongestionMark = 832,
Eric Newberry1de6be62017-04-03 22:58:41 -070046 Ack = 836,
Teng Liang02960742017-10-24 00:36:45 -070047 TxSequence = 840,
48 NonDiscovery = 844,
Teng Liang8b6eda92018-01-25 20:41:54 -070049 PrefixAnnouncement = 848,
Eric Newberry3abeeb82015-08-06 21:38:36 -070050};
51
Eric Newberry261dbc22015-07-22 23:18:18 -070052enum {
53 /**
54 * \brief lower bound of 1-octet header field
55 */
56 HEADER1_MIN = 81,
57
58 /**
59 * \brief upper bound of 1-octet header field
60 */
61 HEADER1_MAX = 99,
62
63 /**
64 * \brief lower bound of 3-octet header field
65 */
66 HEADER3_MIN = 800,
67
68 /**
69 * \brief upper bound of 3-octet header field
70 */
71 HEADER3_MAX = 959
72};
73
Eric Newberry3abeeb82015-08-06 21:38:36 -070074} // namespace tlv
75} // namespace lp
76} // namespace ndn
77
78#endif // NDN_CXX_LP_TLV_HPP