Update of /cvsroot/boost/boost/libs/asio/example/tutorial/daytime1
In directory
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15893/example/tutorial/daytime1
Modified Files:
client.cpp
Log Message:
Ensure that what gets thrown is the system_error exception.
Index: client.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/asio/example/tutorial/daytime1/client.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- client.cpp 8 Nov 2006 05:32:16 -0000 1.3
+++ client.cpp 9 Nov 2006 11:21:42 -0000 1.4
@@ -39,7 +39,7 @@
socket.connect(*endpoint_iterator++, error);
}
if (error)
- throw error;
+ throw boost::system::system_error(error);
for (;;)
{
@@ -51,7 +51,7 @@
if (error == boost::asio::error::eof)
break; // Connection closed cleanly by peer.
else if (error)
- throw error; // Some other error.
+ throw boost::system::system_error(error); // Some other error.
std::cout.write(buf.data(), len);
}
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs