blob: 5dc00a05cc31b448d1e3f6658574ab043a98baf3 [file] [log] [blame]
Alexander Afanasyev0553cd52014-02-18 02:34:45 -08001/* -*- 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_NRD_HPP
11#define NDN_TLV_NRD_HPP
12
13#include "tlv.hpp"
14
15namespace ndn {
16namespace tlv {
17namespace nrd {
18
Junxiao Shi5f6c74f2014-04-18 16:29:44 -070019// \deprecated use NFD RIB Management
Alexander Afanasyev0553cd52014-02-18 02:34:45 -080020enum {
21 PrefixRegOptions = 101,
22 FaceId = 102,
23 Flags = 103,
24 Cost = 104,
25 ExpirationPeriod = 105,
26 StrategyName = 106,
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070027 Protocol = 107
Alexander Afanasyev0553cd52014-02-18 02:34:45 -080028};
29
30enum {
31 NDN_FORW_CHILD_INHERIT = 1,
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070032 NDN_FORW_CAPTURE = 2
Alexander Afanasyev0553cd52014-02-18 02:34:45 -080033};
34
35} // namespace nrd
36} // namespace tlv
37} // namespace ndn
38
39#endif // NDN_TLV_NRD_HPP