added link-map for the SocketPolicy overview image
[senf.git] / Packets / MPEG_DVBBundle / DSMCCSection.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 // Definition of non-inline non-template functions
24
25 #include "DSMCCSection.hh"
26 //#include "DSMCCSection.ih"
27
28 // Custom includes
29 #include <iomanip>
30
31 #define prefix_
32 ///////////////////////////////cc.p////////////////////////////////////////
33
34 //namespace {
35 //    senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::EthVLanPacketType>
36 //        registerEthVLanPacket(0x8100);
37 //}
38
39
40 prefix_ void senf::DSMCCSectionType::dump(packet p, std::ostream & os)
41 {
42     os << "DSMCC Section:\n"
43        << std::hex
44        << "  table_id: 0x" << unsigned(p->table_id()) << "\n"
45        << "  section_syntax_indicator: " << p->ssi() << "\n"
46        << "  private_indicator: " << p->pi() << "\n"
47        << "  reserved_1: " << p->reserved_1() << "\n"
48        << std::dec
49        << "  section_length: " << p->sec_length() << "\n"
50        << std::hex 
51        << "  table_id_extension: " << p->tabel_id_extension() << "\n"
52        << "  reserved_2: " << p->reserved_2() << "\n"
53        << "  version_number: " << p->version_num() << "\n"
54        << "  current_next_indicator: " << p->curr_next_indicator() << "\n"
55        << "  section_number: " << unsigned(p->sec_num()) << "\n"
56        << "  last_section_number: " << unsigned(p->last_sec_num()) << "\n"
57        << std::dec
58        << "  CRC: " << unsigned(p->crc()) << "\n";
59 }
60
61 prefix_ senf::PacketParserBase::size_type senf::DSMCCSectionType::initSize()
62 {
63     return initHeadSize() + 32/8;
64 }
65
66 prefix_ senf::PacketParserBase::size_type senf::DSMCCSectionType::initHeadSize()
67 {
68     return (8+1+1+2+12+16+2+5+1+8+8) / 8;
69 }
70
71 ///////////////////////////////cc.e////////////////////////////////////////
72 #undef prefix_
73
74 \f
75 // Local Variables:
76 // mode: c++
77 // fill-column: 100
78 // c-file-style: "senf"
79 // indent-tabs-mode: nil
80 // ispell-local-dictionary: "american"
81 // compile-command: "scons -u test"
82 // comment-column: 40
83 // End: