X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2Fsg_socket_udp.hxx;h=9234c413820b87edc38fb8a633fe4eed93278784;hb=201cb61f842ef50a19438e3872ba22e588fa1afc;hp=bb413fa3acbc972c50a8f167a1d3aecd9afd09ff;hpb=59991393caa63499898526fed6f0145302f00755;p=simgear.git diff --git a/simgear/io/sg_socket_udp.hxx b/simgear/io/sg_socket_udp.hxx index bb413fa3..9234c413 100644 --- a/simgear/io/sg_socket_udp.hxx +++ b/simgear/io/sg_socket_udp.hxx @@ -5,7 +5,7 @@ // Written by Curtis Olson, started November 2001. // -// Copyright (C) 2001 Curtis L. Olson - curt@flightgear.org +// Copyright (C) 2001 Curtis L. Olson - http://www.flightgear.org/~curt // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as @@ -19,7 +19,7 @@ // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software -// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // // $Id$ @@ -28,20 +28,13 @@ #define _SG_SOCKET_UDP_HXX -#ifndef __cplusplus -# error This library requires C++ -#endif - -#include - #include -#include STL_STRING +#include #include #include - -SG_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; @@ -96,7 +89,7 @@ public: * @param host name of host if direction is SG_IO_OUT or SG_IO_BI * @param port port number if we care to choose one. * @param style specify "udp" or "tcp" */ - SGSocketUDP( const string& host, const string& port ); + SGSocketUDP( const std::string& host, const std::string& port ); /** Destructor */ ~SGSocketUDP(); @@ -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; } };