for david: added first tlv-packet prototype
[senf.git] / Packets / MPEGDVBBundle / TLVPacket.cc
1 // $Id: SNDUPacket.cc 423 2007-08-31 22:05:37Z g0dil $
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Thorsten Horstmann <thorsten.horstmann@fokus.fraunhofer.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief DSMCCSection non-inline non-template implementation */
25
26 #include "TLVPacket.hh"
27 //#include "TLVPacket.ih"
28
29 // Custom includes
30 #include <iomanip>
31 #include "../../Utils/hexdump.hh"
32 #include "../../Packets/DefaultBundle/EthernetPacket.hh"
33
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38
39 prefix_ senf::PacketParserBase::size_type senf::Parse_TLVPacket::bytes()
40     const
41 {
42     return 4 + senf::bytes( length() );
43 }
44
45 //prefix_ void senf::TLVPacketType::init(packet p)
46 //{
47 //    p->init();
48 //}
49
50 prefix_ void senf::TLVPacketType::dump(packet p, std::ostream & os)
51 {
52     os << "TLVPacket:\n"
53        << std::dec
54        << "  type: " <<  unsigned(p->type()) << "\n"
55        << "  length: " << unsigned(p->length()) << "\n";
56 }
57
58 prefix_ senf::PacketParserBase::size_type senf::TLVPacketType::initSize()
59 {
60     return 4 + 1;
61 }
62
63 prefix_ senf::PacketParserBase::size_type senf::TLVPacketType::initHeadSize()
64 {
65     return 4 + 1;
66 }
67
68 ///////////////////////////////cc.e////////////////////////////////////////
69 #undef prefix_
70
71 \f
72 // Local Variables:
73 // mode: c++
74 // fill-column: 100
75 // c-file-style: "senf"
76 // indent-tabs-mode: nil
77 // ispell-local-dictionary: "american"
78 // compile-command: "scons -u test"
79 // comment-column: 40
80 // End: