blob: fe15e6a12dbf4bc60a5c356b01a2b3752dc183a1 [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
13enum {
14 NdnlpData = 80,
15 NdnlpSequence = 81,
16 NdnlpFragIndex = 82,
17 NdnlpFragCount = 83,
18 NdnlpPayload = 84
19};
20
21} // namespace tlv
22} // namespace nfd
23
24#endif // NFD_FACE_NDNLP_TLV_HPP