c42ee11abc09e9222b8f005ec9f0ae900ba81ce5
[senf.git] / Socket / ProtocolServerSocketHandle.hh
1 // $Id$
2 //
3 // Copyright (C) 2006 
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 #ifndef HH_ProtocolServerSocketHandle_
24 #define HH_ProtocolServerSocketHandle_ 1
25
26 // Custom includes
27 #include "ServerSocketHandle.hh"
28
29 #include "ProtocolServerSocketHandle.mpp"
30 ///////////////////////////////hh.p////////////////////////////////////////
31
32 namespace satcom {
33 namespace lib {
34     
35     template <class Protocol> class ProtocolClientSocketHandle;
36
37     /** \brief
38       */
39     template <class SocketProtocol>
40     class ProtocolServerSocketHandle
41         : public ServerSocketHandle<typename SocketProtocol::Policy>
42     {
43     public:
44         ///////////////////////////////////////////////////////////////////////////
45         // Types
46
47         typedef SocketProtocol Protocol;
48
49         ///////////////////////////////////////////////////////////////////////////
50         ///\name Structors and default members
51         ///@{
52
53         ProtocolServerSocketHandle();
54
55 #       define BOOST_PP_ITERATION_PARAMS_1 (4, (1, 9, "Socket/ProtocolServerSocketHandle.mpp", 1))
56 #       include BOOST_PP_ITERATE()
57
58         ///@}
59         ///////////////////////////////////////////////////////////////////////////
60
61         Protocol const & protocol();
62
63         ProtocolClientSocketHandle<SocketProtocol> accept();
64
65         static ProtocolServerSocketHandle cast_static(FileHandle handle);
66         static ProtocolServerSocketHandle cast_dynamic(FileHandle handle);
67
68         void state(SocketStateMap & map, unsigned lod=0);
69         std::string dumpState(unsigned lod=0);
70
71     protected:
72         ProtocolServerSocketHandle(FileHandle other, bool isChecked);
73
74     private:
75
76     };
77
78 }}
79
80 ///////////////////////////////hh.e////////////////////////////////////////
81 //#include "ProtocolServerSocketHandle.cci"
82 //#include "ProtocolServerSocketHandle.ct"
83 #include "ProtocolServerSocketHandle.cti"
84 #endif
85
86 \f
87 // Local Variables:
88 // mode: c++
89 // c-file-style: "satcom"
90 // End: