From: Guilherme Maciel Ferreira Date: Fri, 22 Jul 2011 02:05:55 +0000 (-0300) Subject: Fixed socket typedef, it is a raw socket, not stream socket X-Git-Tag: v1.1^2~50 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=e82b957471e64f578605a62814f6134277da14c5;p=pingcheck Fixed socket typedef, it is a raw socket, not stream socket --- diff --git a/lib/boost-custom/boost/asio/ip/tcp_raw_protocol.hpp b/lib/boost-custom/boost/asio/ip/tcp_raw_protocol.hpp index cd9a137..1553d9d 100644 --- a/lib/boost-custom/boost/asio/ip/tcp_raw_protocol.hpp +++ b/lib/boost-custom/boost/asio/ip/tcp_raw_protocol.hpp @@ -73,8 +73,8 @@ public: return family_; } - /// The TCP socket type. - typedef basic_stream_socket< tcp_raw_protocol > socket; + /// The raw TCP socket type. + typedef basic_raw_socket< tcp_raw_protocol > socket; /// The TCP acceptor type. typedef basic_socket_acceptor< tcp_raw_protocol > acceptor;