Index: /trunk/FACT++/src/dserver2.cc
===================================================================
--- /trunk/FACT++/src/dserver2.cc	(revision 14975)
+++ /trunk/FACT++/src/dserver2.cc	(revision 14976)
@@ -187,5 +187,5 @@
     {
         cout << "Start accept..." << flush;
-        tcp_connection::shared_ptr new_connection = tcp_connection::create(/*acceptor_.*/io_service());
+        tcp_connection::shared_ptr new_connection = tcp_connection::create(/*acceptor_.*/get_io_service());
 
         // This will accept a connection without blocking
Index: /trunk/FACT++/src/fad.cc
===================================================================
--- /trunk/FACT++/src/fad.cc	(revision 14975)
+++ /trunk/FACT++/src/fad.cc	(revision 14976)
@@ -542,5 +542,5 @@
     {
         boost::shared_ptr<ba::ip::tcp::socket> connection =
-            boost::shared_ptr<ba::ip::tcp::socket>(new ba::ip::tcp::socket(acc.io_service()));
+            boost::shared_ptr<ba::ip::tcp::socket>(new ba::ip::tcp::socket(acc.get_io_service()));
 
         acc.async_accept(*connection,
@@ -554,5 +554,5 @@
     {
         cout << "Start accept[" << fBoardId << "] " << acc0.local_endpoint().port() << "..." << flush;
-        tcp_connection::shared_ptr new_connection = tcp_connection::create(/*acceptor_.*/acc0.io_service(), fBoardId);
+        tcp_connection::shared_ptr new_connection = tcp_connection::create(/*acceptor_.*/acc0.get_io_service(), fBoardId);
 
         cout << new_connection.get() << " ";
Index: /trunk/FACT++/src/fsc.cc
===================================================================
--- /trunk/FACT++/src/fsc.cc	(revision 14975)
+++ /trunk/FACT++/src/fsc.cc	(revision 14976)
@@ -158,5 +158,5 @@
     {
         cout << "Start accept..." << flush;
-        tcp_connection::shared_ptr new_connection = tcp_connection::create(/*acceptor_.*/io_service());
+        tcp_connection::shared_ptr new_connection = tcp_connection::create(/*acceptor_.*/get_io_service());
 
         // This will accept a connection without blocking
Index: /trunk/FACT++/src/ftm.cc
===================================================================
--- /trunk/FACT++/src/ftm.cc	(revision 14975)
+++ /trunk/FACT++/src/ftm.cc	(revision 14976)
@@ -519,5 +519,5 @@
     {
         cout << "Start accept..." << flush;
-        tcp_connection::shared_ptr new_connection = tcp_connection::create(/*acceptor_.*/io_service());
+        tcp_connection::shared_ptr new_connection = tcp_connection::create(/*acceptor_.*/get_io_service());
 
         // This will accept a connection without blocking
