X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FSocket%2FCommunicationPolicy.cti;h=a3aaa938e9ef0d26052e622856ba5508a09696c0;hb=e3179a2123ad51d0d9eb63834a581145c4f77c92;hp=6675ed4f1e33a5e92e753343bd49ca11b4ac88e7;hpb=601d1f509f5bb24df167a4dd5a20da67a0af9af8;p=senf.git diff --git a/senf/Socket/CommunicationPolicy.cti b/senf/Socket/CommunicationPolicy.cti index 6675ed4..a3aaa93 100644 --- a/senf/Socket/CommunicationPolicy.cti +++ b/senf/Socket/CommunicationPolicy.cti @@ -29,12 +29,12 @@ // Custom includes #define prefix_ inline -///////////////////////////////cti.p/////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #ifndef DOXYGEN template prefix_ void senf::ConnectedCommunicationPolicy:: -listen(ServerSocketHandle handle, unsigned backlog, +listen(ServerSocketHandle const & handle, unsigned backlog, typename IfAddressingPolicyIsNot::type *) { do_listen(handle, backlog); @@ -42,14 +42,14 @@ listen(ServerSocketHandle handle, unsigned backlog, #else template prefix_ void senf::ConnectedCommunicationPolicy:: -listen(ServerSocketHandle handle, unsigned backlog) +listen(ServerSocketHandle const & handle, unsigned backlog) {} #endif #ifndef DOXYGEN template prefix_ int senf::ConnectedCommunicationPolicy:: -accept(ServerSocketHandle handle, +accept(ServerSocketHandle const & handle, typename ServerSocketHandle::Address & address, typename IfAddressingPolicyIsNot::type *) { @@ -58,12 +58,12 @@ accept(ServerSocketHandle handle, #else template prefix_ int senf::ConnectedCommunicationPolicy:: -accept(ServerSocketHandle handle, +accept(ServerSocketHandle const & handle, typename ServerSocketHandle::Address & address) {} #endif -///////////////////////////////cti.e/////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #undef prefix_