blob: 8ebfcc585ef82b632fcaa59ddbbe6f89f503745a [file] [log] [blame]
Alexander Afanasyev834f35c2011-08-16 17:13:50 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2011 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
Alexander Afanasyev8b379052011-08-21 16:58:20 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070019 */
20
21#ifndef _CCNX_DECODING_HELPER_H_
22#define _CCNX_DECODING_HELPER_H_
23
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070024#include <cstring>
25#include "ns3/buffer.h"
26
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070027namespace ns3 {
28
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070029class CcnxInterestHeader;
30class CcnxContentObjectHeader;
31
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070032/**
Alexander Afanasyev8b379052011-08-21 16:58:20 -070033 * \brief Helper class to decode ccnb formatted CCNx message
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070034 */
35class CcnxDecodingHelper
36{
37public:
38 static size_t
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070039 Deserialize (Buffer::Iterator start, CcnxInterestHeader &interest);
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070040
41 static size_t
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070042 Deserialize (Buffer::Iterator start, CcnxContentObjectHeader &contentObject);
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070043
44private:
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070045};
46
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070047} // namespace ns3
48
49#endif // _CCNX_DECODING_HELPER_H_