]> git.llucax.com Git - software/posixx.git/blobdiff - src/socket/basic_socket.hpp
Fix indentation
[software/posixx.git] / src / socket / basic_socket.hpp
index 3f6f779b4d1965d816f61adee39c5eb14b9d484c..9135f5278fafd87697869457a98650c922fac63a 100644 (file)
@@ -600,30 +600,30 @@ ssize_t posixx::socket::basic_socket< TSockTraits >::recv(void* buf, size_t n,
 }
 
 /*
-   template< typename TSockTraits >
-   inline
-   ssize_t posixx::socket::basic_socket< TSockTraits >::send(const msghdr* msg, int flags)
-   {
-   ssize_t s = ::sendmsg(_fd, msg, flags);
-   if (s == -1)
-   throw error("sendmsg");
-   if (s == 0)
-   throw error("send");
-   return s;
-   }
-
-   template< typename TSockTraits >
-   inline
-   ssize_t posixx::socket::basic_socket< TSockTraits >::recv(struct msghdr* msg, int flags)
-   {
-   ssize_t s = ::recvmsg(_fd, msg, flags);
-   if (s == -1)
-   throw error("recvmsg");
-   if (s == 0)
-   throw error("send");
-   return s;
-   }
- */
+template< typename TSockTraits >
+inline
+ssize_t posixx::socket::basic_socket< TSockTraits >::send(const msghdr* msg, int flags)
+{
+       ssize_t s = ::sendmsg(_fd, msg, flags);
+       if (s == -1)
+               throw error("sendmsg");
+       if (s == 0)
+               throw error("send");
+       return s;
+}
+
+template< typename TSockTraits >
+inline
+ssize_t posixx::socket::basic_socket< TSockTraits >::recv(struct msghdr* msg, int flags)
+{
+       ssize_t s = ::recvmsg(_fd, msg, flags);
+       if (s == -1)
+               throw error("recvmsg");
+       if (s == 0)
+               throw error("send");
+       return s;
+}
+*/
 
 template< typename TSockTraits >
 template< typename TSockOpt >