6df71f769f421cd6b99f22a89785988e2fdc4409
[senf.git] / Packets / MPEGDVBBundle / DatagramSection.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 DatagramSection non-inline non-template implementation */
25
26 #include "DatagramSection.hh"
27 //#include "DatagramSection.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_ void senf::DatagramSectionType::dump(packet p, std::ostream & os)
42 {
43     os << "Datagram Section (MPE):\n"
44        << std::hex
45        << "  table_id: 0x" << unsigned(p->table_id()) << "\n"
46        << "  section_syntax_indicator: " << p->ssi() << "\n"
47        << "  private_indicator: " << p->pi() << "\n"
48        << "  reserved_1: " << p->reserved_1() << "\n"
49        << std::dec
50        << "  section_length: " << p->sec_length() << "\n"
51        << std::hex 
52        << "  MAC_address_6: " << unsigned(p->mac_addr_6()) << "\n"
53        << "  MAC_address_5: " << unsigned(p->mac_addr_5()) << "\n"
54        << "  reserved_2: " << p->reserved_2() << "\n"
55        << "  payload_scrambling_control: " << p->payload_scrmbl_ctrl() << "\n"
56        << "  address_scrambling_control: " << p-> addr_scrmbl_ctrl()  << "\n"
57        << "  LLC_SNAP_flag: " << p->llc_snap_flag() << "\n"
58        << "  current_next_indicator: " << p->curr_next_indicator() << "\n"
59        << "  section_number: " << unsigned(p->sec_num()) << "\n"
60        << "  last_section_number: " << unsigned(p->last_sec_num()) << "\n"
61        << "  MAC_address_4: " << unsigned(p->mac_addr_4()) << "\n"
62        << "  MAC_address_3: " << unsigned(p->mac_addr_3()) << "\n"
63        << "  MAC_address_2: " << unsigned(p->mac_addr_2()) << "\n"
64        << "  MAC_address_1: " << unsigned(p->mac_addr_1()) << "\n"
65        << std::dec
66        << "  CRC: " << unsigned(p->crc()) << "\n";
67 }
68
69 prefix_ senf::PacketParserBase::size_type senf::DatagramSectionType::initSize()
70 {
71     return parser::fixed_bytes + 32/8;
72 }
73
74 prefix_ senf::PacketParserBase::size_type senf::DatagramSectionType::initHeadSize()
75 {
76     return parser::fixed_bytes;
77 }
78
79 ///////////////////////////////cc.e////////////////////////////////////////
80 #undef prefix_
81
82 \f
83 // Local Variables:
84 // mode: c++
85 // fill-column: 100
86 // c-file-style: "senf"
87 // indent-tabs-mode: nil
88 // ispell-local-dictionary: "american"
89 // compile-command: "scons -u test"
90 // comment-column: 40
91 // End: