Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Packets / MPEGDVBBundle / DTCPPacket.cc
1 // $Id:TransportPacket.hh 560 2007-12-13 14:39:37Z tho $
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     David Wagner <dw6@berlios.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 DTCPPacket non-inline non-template implementation */
25
26 //#include "DTCPPacket.hh"
27 //#include "DTCPPacket.ih"
28
29 // Custom includes
30 #include "DTCPPacket.hh"
31 #include <boost/io/ios_state.hpp>
32 #include <iomanip>
33
34 #define prefix_
35 //-/////////////////////////////////////////////////////////////////////////////////////////////////
36
37 prefix_ void senf::DTCPHelloPacketType::dump(packet p, std::ostream & os)
38 {
39     static char const * COMMANDS[] = { "0", "JOIN", "LEAVE", "3", "4", "5", "6", "7",
40                                        "8", "9", "10", "11", "12", "13", "14", "15" };
41     boost::io::ios_all_saver ias(os);
42     os << "DTCP HELLO Packet:" << std::endl
43        << senf::fieldName("version")                   << p->versionNumber()                       << "\n"
44        << senf::fieldName("command")                   << COMMANDS[p->command()]                   << "\n"
45        << senf::fieldName("interval")                  << unsigned(p->interval())                  << "\n"
46        << senf::fieldName("sequence number")           << p->sequenceNumber()                      << "\n"
47        << senf::fieldName("receive capable feed")      << (p->receiveCapableFeed() ? "yes" : "no") << "\n"
48        << senf::fieldName("ip version")                << p->ipVersion()                           << "\n"
49        << senf::fieldName("tunnel protocol")           << unsigned(p->tunnelProtocol())            << "\n"
50        << senf::fieldName("number of BDL ips")         << unsigned(p->fbipCount())                 << "\n"
51        << "  feed BDL ips:\n";
52
53     switch (p->ipVersion()) {
54     case 4 : {
55         typedef DTCPHelloPacket::Parser::v4fbipList_t FBIPList;
56         FBIPList::container fbips (p->v4fbipList());
57         FBIPList::container::iterator i (fbips.begin());
58         FBIPList::container::iterator const i_end (fbips.end());
59         for (; i != i_end; ++i)
60             os << "    " << *i << "\n";
61         break;
62     }
63     case 6 : {
64         typedef DTCPHelloPacket::Parser::v6fbipList_t FBIPList;
65         FBIPList::container fbips (p->v6fbipList());
66         FBIPList::container::iterator i (fbips.begin());
67         FBIPList::container::iterator const i_end (fbips.end());
68         for (; i != i_end; ++i)
69             os << "    " << *i << "\n";
70         break;
71     }
72     default:
73         os << "    unknown ip version\n";
74     }
75 }
76
77 #undef prefix_
78
79
80 //-/////////////////////////////////////////////////////////////////////////////////////////////////
81 #undef prefix_
82
83 \f
84 // Local Variables:
85 // mode: c++
86 // fill-column: 100
87 // comment-column: 40
88 // c-file-style: "senf"
89 // indent-tabs-mode: nil
90 // ispell-local-dictionary: "american"
91 // compile-command: "scons -u test"
92 // End: