Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / ACE / examples / Logger / README
blobf7d95425a7120e7fea241ed1b73a1ff58d266b17
1 This directory contains a simple client/server implementation of the
2 distributed logging server described in several papers in the C++
3 Report (which can be obtained via the following WWW URLs:
4 http://www.cs.wustl.edu/~schmidt/{Reactor1-93.ps.gz,Reactor2-93.ps.gz}).
6 The example consists of the following directories:
8   . client
10     This program talks directly to the server logging
11     daemon.  The server daemon must be started before you
12     can run this test.
14   . simple-server
16     This program runs a simple, non-templated,
17     single-threaded Reactive implementation of the
18     distributed logging server daemon.
20   . Acceptor-server
22     This program runs templated, Acceptor-based
23     single-threaded Reactive implementation of the
24     distributed logging server daemon.
26 To see a more complex solution that implements the design described in
27 the C++ Report articles, please see the:
29 $ACE_ROOT/netsvcs/{clients,lib,servers}
31 directories.