Shuo Chen | ba793e9 | 2014-03-17 17:17:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2014 Regents of the University of California. |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #ifndef REPO_HELPERS_REPO_TLV_HPP |
| 8 | #define REPO_HELPERS_REPO_TLV_HPP |
| 9 | |
Alexander Afanasyev | e291caf | 2014-04-25 11:17:36 -0700 | [diff] [blame^] | 10 | #include <ndn-cxx/encoding/tlv.hpp> |
Shuo Chen | ba793e9 | 2014-03-17 17:17:16 -0700 | [diff] [blame] | 11 | |
| 12 | namespace repo { |
| 13 | namespace tlv { |
| 14 | |
| 15 | using namespace ndn::Tlv; |
| 16 | |
| 17 | enum { |
| 18 | RepoCommandParameter = 201, |
| 19 | StartBlockId = 204, |
| 20 | EndBlockId = 205, |
| 21 | ProcessId = 206, |
| 22 | RepoCommandResponse = 207, |
| 23 | StatusCode = 208, |
| 24 | InsertNum = 209, |
| 25 | DeleteNum = 210 |
| 26 | }; |
| 27 | |
| 28 | } // tlv |
| 29 | } // repo |
| 30 | |
| 31 | #endif // REPO_HELPERS_REPO_TLV_HPP |