c5c9dc68016bf6ce6f48eae622f55912ef6bb2bf
[senf.git] / Packets / MPEGDVBBundle / SNDUPacket.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@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 "SNDUPacket.hh"
27 //#include "SNDUPacket.ih"
28
29 // Custom includes
30 #include <iomanip>
31
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 //namespace {
36 //    senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::EthVLanPacketType>
37 //        registerEthVLanPacket(0x8100);
38 //}
39
40
41 prefix_ senf::PacketParserBase::size_type senf::Parse_SNDUPacket::bytes()
42     const
43 {
44     if ( d_bit() )
45         return 2 + 2 + 4;  // D-Bit + 15 bits length + 16 bits type field + 32 bits crc
46     else
47         return 2 + 2 + 4 + 6;  // + 6 Byte NPA destination address
48 }
49
50 prefix_ void senf::SNDUPacketType::dump(packet p, std::ostream & os)
51 {
52     os << "SNDUPacket:\n";
53 }
54
55 prefix_ senf::PacketParserBase::size_type senf::SNDUPacketType::initSize()
56 {
57     return 2 + 2 + 4;  // D-Bit + 15 bits length + 16 bits type field + 32 bits crc
58 }
59
60 prefix_ senf::PacketParserBase::size_type senf::SNDUPacketType::initHeadSize()
61 {
62     return 2 + 2;  // D-Bit + 15 bits length + 16 bits type field
63 }
64
65 ///////////////////////////////cc.e////////////////////////////////////////
66 #undef prefix_
67
68 \f
69 // Local Variables:
70 // mode: c++
71 // fill-column: 100
72 // c-file-style: "senf"
73 // indent-tabs-mode: nil
74 // ispell-local-dictionary: "american"
75 // compile-command: "scons -u test"
76 // comment-column: 40
77 // End: