NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Socket / Protocols / GenericAddressingPolicy.cti
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
6 //     Stefan Bund <g0dil@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 GenericAddressingPolicy inline template implementation
25  */
26
27 //#include "GenericAddressingPolicy.ih"
28
29 // Custom includes
30
31 #define prefix_ inline
32 ///////////////////////////////cti.p///////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::GenericAddressingPolicy<Address>
36
37 #ifndef DOXYGEN
38 template <class Address>
39 template <class Policy>
40 prefix_ void senf::GenericAddressingPolicy<Address>::
41 peer(SocketHandle<Policy> handle, Address & addr,
42      typename IfCommunicationPolicyIs<Policy,ConnectedCommunicationPolicy>::type *)
43 {
44     addr.clear();
45     do_peer(handle,addr.sockaddr_p(),addr.sockaddr_len());
46 }
47 #else
48 template <class Address>
49 template <class Policy>
50 prefix_ void senf::GenericAddressingPolicy<Address>::
51 peer(SocketHandle<Policy> handle, Address & addr)
52 {}
53 #endif
54
55 #ifndef DOXYGEN
56 template <class Address>
57 template <class Policy>
58 prefix_ void senf::GenericAddressingPolicy<Address>::
59 connect(SocketHandle<Policy> handle, Address const & addr,
60         typename IfCommunicationPolicyIs<Policy,ConnectedCommunicationPolicy>::type *)
61 {
62     do_connect(handle,addr.sockaddr_p(),addr.sockaddr_len());
63 }
64 #else
65 template <class Address>
66 template <class Policy>
67 prefix_ void senf::GenericAddressingPolicy<Address>::
68 connect(SocketHandle<Policy> handle, Address const & addr)
69 {}
70 #endif
71
72 template <class Address>
73 prefix_ void senf::GenericAddressingPolicy<Address>::local(FileHandle handle,
74                                                                   Address & addr)
75 {
76     addr.clear();
77     do_local(handle,addr.sockaddr_p(),addr.sockaddr_len());
78 }
79
80 template <class Address>
81 prefix_ void senf::GenericAddressingPolicy<Address>::bind(FileHandle handle,
82                                                                  Address const & addr)
83 {
84     do_bind(handle,addr.sockaddr_p(),addr.sockaddr_len());
85 }
86
87 ///////////////////////////////cti.e///////////////////////////////////////
88 #undef prefix_
89
90 \f
91 // Local Variables:
92 // mode: c++
93 // fill-column: 100
94 // c-file-style: "senf"
95 // indent-tabs-mode: nil
96 // ispell-local-dictionary: "american"
97 // compile-command: "scons -u test"
98 // comment-column: 40
99 // End: