blob: ed97dae43880cddc8fce2170e701978d1dba4d97 [file] [log] [blame]
Junxiao Shi9b0d3e92014-02-15 12:27:12 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (C) 2014 Named Data Networking Project
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NFD_FACE_NDNLP_TLV_HPP
8#define NFD_FACE_NDNLP_TLV_HPP
9
10namespace nfd {
11namespace tlv {
12
Junxiao Shidf3b4382014-02-23 11:28:21 -070013enum
14{
Junxiao Shi9b0d3e92014-02-15 12:27:12 -070015 NdnlpData = 80,
16 NdnlpSequence = 81,
17 NdnlpFragIndex = 82,
18 NdnlpFragCount = 83,
19 NdnlpPayload = 84
20};
21
22} // namespace tlv
23} // namespace nfd
24
25#endif // NFD_FACE_NDNLP_TLV_HPP