Please use spaces instead of tabs!
[senf.git] / 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
24 #include "DTCPPacket.hh"
25 #include <boost/io/ios_state.hpp>
26 #include <iomanip>
27
28 #define prefix_
29
30 prefix_ void senf::DTCPPacketType::dump(packet p, std::ostream & os)
31 {
32     boost::io::ios_all_saver ias(os);
33     os << "DTCPPacket" << std::endl
34        << "  version              : " << p->version_number()              << std::endl
35        << "  command              : " << p->command()                     << std::endl
36        << "  interval             : " << p->interval()                    << std::endl
37        << "  sequence_number      : " << p->sequence_number()             << std::endl
38        << "  receive_capable_feed : " << p->receive_capable_feed()        << std::endl
39        << "  ip_version           : " << p->ip_version()                  << std::endl
40        << "  tunnel_protocol      : " << p->tunnel_protocol()             << std::endl
41        ;
42        
43         //TODO: print included IPs
44 }
45
46 #undef prefix_