4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 // Stefan Bund <stefan.bund@fokus.fraunhofer.de>
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.
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.
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.
23 // Definition of non-inline non-template functions
28 #include <sys/ioctl.h>
29 #include <linux/sockios.h>
30 #include <linux/dvb/dmx.h>
32 #include "Scheduler/Scheduler.hh"
33 #include "Packets/DefaultBundle/EthernetPacket.hh"
34 #include "Packets/MPEGDVBBundle/DatagramSection.hh"
35 #include "Utils/membind.hh"
36 #include "Utils/hexdump.hh"
37 #include "Socket/Protocols/DVB/DVBDemuxHandles.hh"
38 #include "Packets/ParseInt.hh"
39 #include "Packets/Packet.hh"
40 #include "Packets/PacketData.hh"
45 ///////////////////////////////cc.p////////////////////////////////////////
49 senf::DVBDemuxSectionHandle handle;
52 MySniffer(unsigned short adapter=0, unsigned short device=0)
53 : handle( adapter, device )
55 struct dmx_sct_filter_params sec_filter;
56 memset(&sec_filter, 0, sizeof (struct dmx_sct_filter_params));
58 sec_filter.filter.filter[0] = 62;
59 sec_filter.filter.mask[0] = 0xff;
60 sec_filter.flags = DMX_IMMEDIATE_START;
61 sec_filter.flags |= DMX_CHECK_CRC;
63 handle.protocol().setSectionFilter( &sec_filter );
65 senf::Scheduler::instance().add(
66 handle, senf::membind(&MySniffer::dumpSection, this));
70 void dumpSection(senf::FileHandle /* ignored */, senf::Scheduler::EventId event)
72 std::string data (handle.read());
73 senf::DatagramSection section (senf::DatagramSection::create(data));
74 section.dump(std::cout);
75 senf::PacketData & datagramData (section.last().data());
76 senf::hexdump(datagramData.begin(), datagramData.end(), std::cout);
80 int main(int argc, char const * argv[])
84 senf::Scheduler::instance().process();
86 catch (std::exception const & ex) {
87 std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
93 ///////////////////////////////cc.e////////////////////////////////////////
100 // c-file-style: "senf"
101 // indent-tabs-mode: nil
102 // ispell-local-dictionary: "american"
103 // compile-command: "scons -u test"
104 // comment-column: 40