git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@129 270642c3-0616-0410...
[senf.git] / Socket / GenericAddressingPolicy.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_GenericAddressingPolicy_
24 #define HH_GenericAddressingPolicy_ 1
25
26 // Custom includes
27 #include "SocketHandle.hh"
28 #include "FileHandle.hh"
29 #include "SocketPolicy.hh"
30 #include "CommunicationPolicy.hh"
31
32 //#include "GenericAddressingPolicy.mpp"
33 ///////////////////////////////hh.p////////////////////////////////////////
34
35 namespace satcom {
36 namespace lib {
37
38     struct GenericAddressingPolicy_Base
39     {
40         static void do_local(FileHandle handle, struct sockaddr * addr, unsigned len);
41         static void do_peer(FileHandle handle, struct sockaddr * addr, unsigned len);
42         static void do_bind(FileHandle handle, struct sockaddr const * addr, unsigned len);
43         static void do_connect(FileHandle handle, struct sockaddr const * addr, unsigned len);
44     };
45
46     template <class Address>
47     struct GenericAddressingPolicy
48         : private GenericAddressingPolicy_Base
49     {
50         template <class Policy>
51         static void peer(SocketHandle<Policy> handle, Address & addr,
52                          typename IfCommunicationPolicyIs<Policy,ConnectedCommunicationPolicy>::type * = 0);
53         static void local(FileHandle handle, Address & addr);
54
55         template <class Policy>
56         static void connect(SocketHandle<Policy> handle, Address const & addr,
57                             typename IfCommunicationPolicyIs<Policy,ConnectedCommunicationPolicy>::type * = 0);
58         static void bind(FileHandle handle, Address const & addr);
59     };
60
61 }}
62
63 ///////////////////////////////hh.e////////////////////////////////////////
64 //#include "GenericAddressingPolicy.cci"
65 //#include "GenericAddressingPolicy.ct"
66 #include "GenericAddressingPolicy.cti"
67 //#include "GenericAddressingPolicy.mpp"
68 #endif
69
70 \f
71 // Local Variables:
72 // mode: c++
73 // c-file-style: "satcom"
74 // End: