]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/portability/tcp_sockets.cpp
import stlplus 3.7
[chaz/yoink] / src / stlplus / portability / tcp_sockets.cpp
index b15f6382f4fc2bc63ded58e2746b33b81ba07281..2b8fa63d950d1e8d1c32d8241fdcad22caa3229f 100644 (file)
-////////////////////////////////////////////////////////////////////////////////
-
-//   Author:    Andy Rushton
-//   Copyright: (c) Southampton University 1999-2004
-//              (c) Andy Rushton           2004-2009
-//   License:   BSD License, see ../docs/license.html
-
-////////////////////////////////////////////////////////////////////////////////
-
-#include "tcp_sockets.hpp"
-
-////////////////////////////////////////////////////////////////////////////////
-
-namespace stlplus
-{
-
-  //////////////////////////////////////////////////////////////////////////////
-  // TCP Connection
-
-
-  TCP_connection::TCP_connection(const IP_socket& socket) : IP_socket(socket)
-  {
-  }
-
-  TCP_connection::TCP_connection(void) : IP_socket(TCP)
-  {
-  }
-
-  unsigned short TCP_connection::port(void) const
-  {
-    return remote_port();
-  }
-
-  ////////////////////////////////////////////////////////////////////////////////
-  // Server
-
-  TCP_server::TCP_server(void) : IP_socket(TCP)
-  {
-  }
-
-  TCP_server::TCP_server(unsigned short port, unsigned short queue) : IP_socket(TCP)
-  {
-    initialise(port,queue);
-  }
-
-  bool TCP_server::initialise(unsigned short port, unsigned short queue)
-  {
-    if (!IP_socket::bind_any(port)) return false;
-    return IP_socket::listen(queue);
-  }
-
-  TCP_connection TCP_server::accept(void)
-  {
-    return TCP_connection(IP_socket::accept());
-  }
-
-  bool TCP_server::connection_ready(unsigned timeout)
-  {
-    return accept_ready(timeout);
-  }
-
-  TCP_connection TCP_server::connection(void)
-  {
-    return accept();
-  }
-
-  //////////////////////////////////////////////////////////////////////////////
-  // Client
-
-  TCP_client::TCP_client(void) : IP_socket(TCP)
-  {
-  }
-
-  TCP_client::TCP_client(const std::string& address, unsigned short port, unsigned int timeout) : IP_socket(TCP)
-  {
-    initialise(address,port,timeout);
-  }
-
-  TCP_client::TCP_client(unsigned long address, unsigned short port, unsigned int timeout) : IP_socket(TCP)
-  {
-    initialise(address,port,timeout);
-  }
-
-  bool TCP_client::initialise(unsigned long remote_address, unsigned short remote_port, unsigned int timeout)
-  {
-    if (!IP_socket::connect(remote_address, remote_port))
-    {
-      close();
-      return false;
-    }
-    if (timeout && !IP_socket::connected(timeout))
-    {
-      close();
-      return false;
-    }
-    return true;
-  }
-
-  bool TCP_client::initialise(const std::string& address, unsigned short remote_port, unsigned int timeout)
-  {
-    // lookup the address and convert it into an IP number
-    unsigned long remote_address = IP_socket::ip_lookup(address);
-    if (!remote_address) return false;
-    return initialise(remote_address, remote_port, timeout);
-  }
-
-  unsigned short TCP_client::port(void) const
-  {
-    return remote_port();
-  }
-
-  unsigned long TCP_client::address(void) const
-  {
-    return remote_address();
-  }
-
-  ////////////////////////////////////////////////////////////////////////////////
-
-} // end namespace stlplus
+////////////////////////////////////////////////////////////////////////////////\r
+\r
+//   Author:    Andy Rushton\r
+//   Copyright: (c) Southampton University 1999-2004\r
+//              (c) Andy Rushton           2004 onwards\r
+//   License:   BSD License, see ../docs/license.html\r
+\r
+////////////////////////////////////////////////////////////////////////////////\r
+\r
+#include "tcp_sockets.hpp"\r
+\r
+////////////////////////////////////////////////////////////////////////////////\r
+\r
+namespace stlplus\r
+{\r
+\r
+  //////////////////////////////////////////////////////////////////////////////\r
+  // TCP Connection\r
+\r
+\r
+  TCP_connection::TCP_connection(const IP_socket& socket) : IP_socket(socket)\r
+  {\r
+  }\r
+\r
+  TCP_connection::TCP_connection(void) : IP_socket(TCP)\r
+  {\r
+  }\r
+\r
+  unsigned short TCP_connection::port(void) const\r
+  {\r
+    return remote_port();\r
+  }\r
+\r
+  ////////////////////////////////////////////////////////////////////////////////\r
+  // Server\r
+\r
+  TCP_server::TCP_server(void) : IP_socket(TCP)\r
+  {\r
+  }\r
+\r
+  TCP_server::TCP_server(unsigned short port, unsigned short queue) : IP_socket(TCP)\r
+  {\r
+    initialise(port,queue);\r
+  }\r
+\r
+  bool TCP_server::initialise(unsigned short port, unsigned short queue)\r
+  {\r
+    if (!IP_socket::bind_any(port)) return false;\r
+    return IP_socket::listen(queue);\r
+  }\r
+\r
+  TCP_connection TCP_server::accept(void)\r
+  {\r
+    return TCP_connection(IP_socket::accept());\r
+  }\r
+\r
+  bool TCP_server::connection_ready(unsigned timeout)\r
+  {\r
+    return accept_ready(timeout);\r
+  }\r
+\r
+  TCP_connection TCP_server::connection(void)\r
+  {\r
+    return accept();\r
+  }\r
+\r
+  //////////////////////////////////////////////////////////////////////////////\r
+  // Client\r
+\r
+  TCP_client::TCP_client(void) : IP_socket(TCP)\r
+  {\r
+  }\r
+\r
+  TCP_client::TCP_client(const std::string& address, unsigned short port, unsigned int timeout) : IP_socket(TCP)\r
+  {\r
+    initialise(address,port,timeout);\r
+  }\r
+\r
+  TCP_client::TCP_client(unsigned long address, unsigned short port, unsigned int timeout) : IP_socket(TCP)\r
+  {\r
+    initialise(address,port,timeout);\r
+  }\r
+\r
+  bool TCP_client::initialise(unsigned long remote_address, unsigned short remote_port, unsigned int timeout)\r
+  {\r
+    if (!IP_socket::connect(remote_address, remote_port))\r
+    {\r
+      close();\r
+      return false;\r
+    }\r
+    if (timeout && !IP_socket::connected(timeout))\r
+    {\r
+      close();\r
+      return false;\r
+    }\r
+    return true;\r
+  }\r
+\r
+  bool TCP_client::initialise(const std::string& address, unsigned short remote_port, unsigned int timeout)\r
+  {\r
+    // lookup the address and convert it into an IP number\r
+    unsigned long remote_address = IP_socket::ip_lookup(address);\r
+    if (!remote_address) return false;\r
+    return initialise(remote_address, remote_port, timeout);\r
+  }\r
+\r
+  unsigned short TCP_client::port(void) const\r
+  {\r
+    return remote_port();\r
+  }\r
+\r
+  unsigned long TCP_client::address(void) const\r
+  {\r
+    return remote_address();\r
+  }\r
+\r
+  ////////////////////////////////////////////////////////////////////////////////\r
+\r
+} // end namespace stlplus\r
This page took 0.026656 seconds and 4 git commands to generate.