Update of /cvsroot/boost/boost/libs/asio/example/tutorial/daytime5
In directory 
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17073/libs/asio/example/tutorial/daytime5

Modified Files:
        server.cpp 
Log Message:
Change error handling to match TR2 proposal.


Index: server.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/asio/example/tutorial/daytime5/server.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- server.cpp  25 Jul 2006 11:04:04 -0000      1.2
+++ server.cpp  8 Nov 2006 05:32:16 -0000       1.3
@@ -35,17 +35,18 @@
     {
       boost::array<char, 1> recv_buf;
       udp::endpoint remote_endpoint;
-      boost::asio::error error;
+      boost::system::error_code error;
       socket.receive_from(boost::asio::buffer(recv_buf),
-          remote_endpoint, 0, boost::asio::assign_error(error));
+          remote_endpoint, 0, error);
 
       if (error && error != boost::asio::error::message_size)
         throw error;
 
       std::string message = make_daytime_string();
 
+      boost::system::error_code ignored_error;
       socket.send_to(boost::asio::buffer(message),
-          remote_endpoint, 0, boost::asio::ignore_error());
+          remote_endpoint, 0, ignored_error);
     }
   }
   catch (std::exception& e)


-------------------------------------------------------------------------
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

Reply via email to