blob: 05761b33114fec147a741aa7543ba099ee361f2a [file] [log] [blame]
Shuo Chenba793e92014-03-17 17:17:16 -07001/* -*- 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 Afanasyeve291caf2014-04-25 11:17:36 -070010#include <ndn-cxx/encoding/tlv.hpp>
Shuo Chenba793e92014-03-17 17:17:16 -070011
12namespace repo {
13namespace tlv {
14
15using namespace ndn::Tlv;
16
17enum {
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