Browse Source

[4009] Updated asiolibk README

Francis Dupont 9 years ago
parent
commit
203667d650
1 changed files with 6 additions and 7 deletions
  1. 6 7
      src/lib/asiolink/README

+ 6 - 7
src/lib/asiolink/README

@@ -1,23 +1,22 @@
 The asiolink library is intended to provide an abstraction layer between
 The asiolink library is intended to provide an abstraction layer between
-BIND10 modules and the socket I/O subsystem we are using (currently, the
+Kea modules and the socket I/O subsystem we are using (currently, the
-headers-only version of ASIO, release 1.43).  This has several benefits,
+headers-only version of ASIO included in Boost).  This has several benefits,
 including:
 including:
 
 
   - Simple interface
   - Simple interface
 
 
-  - Back-end flexibility:  It would be easy to switch from using
+  - Back-end flexibility: It would be relatively easy to switch to any
-    ASIO to boost::asio, and even relatively straightforward to switch
+    other asynchronous I/O system.
-    to any other asynchronous I/O system.
 
 
   - Cleaner compilation:  The ASIO headers include code which can
   - Cleaner compilation:  The ASIO headers include code which can
     generate warnings in some compilers due to unused parameters and
     generate warnings in some compilers due to unused parameters and
-    such.  Including ASIO header files throughout the BIND 10 tree would
+    such.  Including ASIO header files throughout the Kea tree would
     require us to relax the strictness of our error checking.  Including
     require us to relax the strictness of our error checking.  Including
     them in only one place allows us to relax strictness here, while
     them in only one place allows us to relax strictness here, while
     leaving it in place elsewhere.
     leaving it in place elsewhere.
 
 
 Some of the classes defined here--for example, IOSocket, IOEndpoint,
 Some of the classes defined here--for example, IOSocket, IOEndpoint,
-and IOAddress--are to be used by BIND 10 modules as wrappers around
+and IOAddress--are to be used by Kea modules as wrappers around
 ASIO-specific classes.
 ASIO-specific classes.