Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Socket / Protocols / DVB / DVBDemuxSocketProtocol.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@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 DVBDemuxSocketProtocol non-inline non-template implementation */
25
26 #include "DVBDemuxSocketProtocol.hh"
27 //#include "DVBDemuxSocketProtocol.ih"
28
29 // Custom includes
30 #include <sys/socket.h>
31 #include <iostream>
32 #include <string>
33 #include <sys/ioctl.h>
34 #include <linux/sockios.h>
35 #include <senf/Socket/SocketHandle.hh>
36
37 //#include "DVBDemuxSocketProtocol.mpp"
38 #define prefix_
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40
41 prefix_ void senf::DVBDemuxSocketProtocol::setBufferSize(unsigned long size)
42     const
43 {
44     if (::ioctl(fd(), DMX_SET_BUFFER_SIZE, size) < 0)
45         SENF_THROW_SYSTEM_EXCEPTION("")
46               << "Could not set the size of the buffer on DVB adapter. requested size: "
47               << size << ".";
48 }
49
50 prefix_ void senf::DVBDemuxSocketProtocol::startFiltering()
51     const
52 {
53     if (::ioctl(fd(), DMX_START) < 0)
54         SENF_THROW_SYSTEM_EXCEPTION("Could not start filtering operation on DVB adapter.");
55 }
56
57 prefix_ void senf::DVBDemuxSocketProtocol::stopFiltering()
58     const
59 {
60     if (::ioctl(fd(), DMX_STOP) < 0)
61         SENF_THROW_SYSTEM_EXCEPTION("Could not stop filtering operation on DVB adapter.");
62 }
63
64 prefix_ bool senf::DVBDemuxSocketProtocol::eof()
65     const
66 {
67     return false;
68 }
69
70 //-/////////////////////////////////////////////////////////////////////////////////////////////////
71 #undef prefix_
72 //#include "DVBDemuxSocketProtocol.mpp"
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: