X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2Fsg_socket_udp.hxx;h=69a5b0274cb423ba9e1ddc61212db19d33d5f948;hb=9d1cf253b477ed11b8de75ebc29f22e82222190a;hp=9d8e8eb696d1a5f5453e02650408eb5204e43640;hpb=d4c7e950927b1e19a7a7622a7919f32233a6b7a8;p=simgear.git diff --git a/simgear/io/sg_socket_udp.hxx b/simgear/io/sg_socket_udp.hxx index 9d8e8eb6..69a5b027 100644 --- a/simgear/io/sg_socket_udp.hxx +++ b/simgear/io/sg_socket_udp.hxx @@ -28,20 +28,13 @@ #define _SG_SOCKET_UDP_HXX -#ifndef __cplusplus -# error This library requires C++ -#endif - -#include - #include #include #include #include - -using std::string; +#include /** * A UDP socket I/O class based on SGIOChannel and plib/net. @@ -50,10 +43,10 @@ class SGSocketUDP : public SGIOChannel { private: - netSocket sock; + simgear::Socket sock; - string hostname; - string port_str; + std::string hostname; + std::string port_str; char save_buf[ 2 * SG_IO_MAX_MSG_SIZE ]; int save_len; @@ -128,10 +121,10 @@ public: bool setBlocking( bool value ); /** @return the remote host name */ - inline string get_hostname() const { return hostname; } + inline std::string get_hostname() const { return hostname; } /** @return the port number (in string form) */ - inline string get_port_str() const { return port_str; } + inline std::string get_port_str() const { return port_str; } };