Update of /cvsroot/boost/boost/libs/asio/doc
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25337/doc

Modified Files:
        examples.qbk 
Log Message:
Try to fix Borland C++ compile errors.


Index: examples.qbk
===================================================================
RCS file: /cvsroot/boost/boost/libs/asio/doc/examples.qbk,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- examples.qbk        19 Jan 2007 01:22:06 -0000      1.2
+++ examples.qbk        20 May 2007 03:50:17 -0000      1.3
@@ -59,9 +59,9 @@
 
 [heading HTTP Server]
 
-This example illustrates the use of asio in a server implementation of HTTP 
1.0.
-It demonstrates how to perform a clean shutdown by cancelling all outstanding
-asynchronous operations.
+This example illustrates the use of asio in a simple single-threaded server
+implementation of HTTP 1.0. It demonstrates how to perform a clean shutdown by
+cancelling all outstanding asynchronous operations.
 
 * [EMAIL PROTECTED]/../example/http/server/connection.cpp]
 * [EMAIL PROTECTED]/../example/http/server/connection.hpp]
@@ -83,6 +83,60 @@
 * [EMAIL PROTECTED]/../example/http/server/win_main.cpp]
 
 
+[heading HTTP Server 2]
+
+An HTTP server using an io_service-per-CPU design.
+
+* [EMAIL PROTECTED]/../example/http/server2/connection.cpp]
+* [EMAIL PROTECTED]/../example/http/server2/connection.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/header.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/io_service_pool.cpp]
+* [EMAIL PROTECTED]/../example/http/server2/io_service_pool.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/mime_types.cpp]
+* [EMAIL PROTECTED]/../example/http/server2/mime_types.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/posix_main.cpp]
+* [EMAIL PROTECTED]/../example/http/server2/reply.cpp]
+* [EMAIL PROTECTED]/../example/http/server2/reply.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/request.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/request_handler.cpp]
+* [EMAIL PROTECTED]/../example/http/server2/request_handler.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/request_parser.cpp]
+* [EMAIL PROTECTED]/../example/http/server2/request_parser.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/server.cpp]
+* [EMAIL PROTECTED]/../example/http/server2/server.hpp]
+* [EMAIL PROTECTED]/../example/http/server2/win_main.cpp]
+
+
+[heading HTTP Server 3]
+
+An HTTP server using a single io_service and a thread pool calling 
`io_service::run()`.
+
+* [EMAIL PROTECTED]/../example/http/server3/connection.cpp]
+* [EMAIL PROTECTED]/../example/http/server3/connection.hpp]
+* [EMAIL PROTECTED]/../example/http/server3/header.hpp]
+* [EMAIL PROTECTED]/../example/http/server3/mime_types.cpp]
+* [EMAIL PROTECTED]/../example/http/server3/mime_types.hpp]
+* [EMAIL PROTECTED]/../example/http/server3/posix_main.cpp]
+* [EMAIL PROTECTED]/../example/http/server3/reply.cpp]
+* [EMAIL PROTECTED]/../example/http/server3/reply.hpp]
+* [EMAIL PROTECTED]/../example/http/server3/request.hpp]
+* [EMAIL PROTECTED]/../example/http/server3/request_handler.cpp]
+* [EMAIL PROTECTED]/../example/http/server3/request_handler.hpp]
+* [EMAIL PROTECTED]/../example/http/server3/request_parser.cpp]
+* [EMAIL PROTECTED]/../example/http/server3/request_parser.hpp]
+* [EMAIL PROTECTED]/../example/http/server3/server.cpp]
+* [EMAIL PROTECTED]/../example/http/server3/server.hpp]
+* [EMAIL PROTECTED]/../example/http/server3/win_main.cpp]
+
+
+[heading Invocation]
+
+This example shows how to customise handler invocation. Completion handlers are
+added to a priority queue rather than executed immediately.
+
+* [EMAIL PROTECTED]/../example/invocation/prioritised_handlers.cpp]
+
+
 [heading Iostreams]
 
 Two examples showing how to use [link boost_asio.reference.ip__tcp.iostream].


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to