Commit c4e5c987 authored by Hauke Goldhammer's avatar Hauke Goldhammer

Remove paths from header comments

parent eeccec20
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
* a broker. Server and client exchange integers in a 'ping-pong protocol'. * * a broker. Server and client exchange integers in a 'ping-pong protocol'. *
* * * *
* Minimal setup: * * Minimal setup: *
* - ./build/example/simple_broker -s 4242 * * - simple_broker -s 4242 *
* - ./build/example/simple_broker -c localhost 4242 * * - simple_broker -c localhost 4242 *
\******************************************************************************/ \******************************************************************************/
// Manual refs: 42-47 (Actors.tex) // Manual refs: 42-47 (Actors.tex)
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* terminal version in remote_actors/group_chat.cpp. * * terminal version in remote_actors/group_chat.cpp. *
* * * *
* Setup for a minimal chat between "alice" and "bob": * * Setup for a minimal chat between "alice" and "bob": *
* - ./build/examples/group_server -p 4242 * * - group_server -p 4242 *
* - ./build/examples/qt_group_chat -g remote:chatroom@localhost:4242 -n alice* * - qt_group_chat -g remote:chatroom@localhost:4242 -n alice *
* - ./build/examples/qt_group_chat -g remote:chatroom@localhost:4242 -n bob * * - qt_group_chat -g remote:chatroom@localhost:4242 -n bob *
\******************************************************************************/ \******************************************************************************/
#include <set> #include <set>
......
// This program is a distributed version of the math_actor example. /******************************************************************************\
// Client and server use a stateless request/response protocol and the client * This program is a distributed version of the math_actor example. *
// is failure resilient by using a FIFO request queue. * Client and server use a stateless request/response protocol and the client *
// The client auto-reconnects and also allows for server reconfiguration. * is failure resilient by using a FIFO request queue. *
// * The client auto-reconnects and also allows for server reconfiguration. *
// Run server at port 4242: * *
// - ./build/examples/distributed_calculator -s -p 4242 * Run server at port 4242: *
// * - distributed_calculator -s -p 4242 *
// Run client at the same host: * *
// - ./build/examples/distributed_calculator -c -p 4242 * Run client at the same host: *
* - distributed_calculator -c -p 4242 *
// Manual refs: 206-218 (ConfiguringActorSystems) \******************************************************************************/
#include <array> #include <array>
#include <cassert> #include <cassert>
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
* based on group communication. * * based on group communication. *
* * * *
* Setup for a minimal chat between "alice" and "bob": * * Setup for a minimal chat between "alice" and "bob": *
* - ./build/example/group_chat -s -p 4242 * * - group_chat -s -p 4242 *
* - ./build/example/group_chat -g remote:chatroom@localhost:4242 -n alice * * - group_chat -g remote:chatroom@localhost:4242 -n alice *
* - ./build/example/group_chat -g remote:chatroom@localhost:4242 -n bob * * - group_chat -g remote:chatroom@localhost:4242 -n bob *
\******************************************************************************/ \******************************************************************************/
#include <cstdlib> #include <cstdlib>
......
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
* communication server. * * communication server. *
* * * *
* Setup for a minimal chat between "alice" and "bob": * * Setup for a minimal chat between "alice" and "bob": *
* - ./build/bin/group_server -p 4242 * * - group_server -p 4242 *
* - ./build/bin/group_chat -g remote:chatroom@localhost:4242 -n alice * * - group_chat -g remote:chatroom@localhost:4242 -n alice *
* - ./build/bin/group_chat -g remote:chatroom@localhost:4242 -n bob * * - group_chat -g remote:chatroom@localhost:4242 -n bob *
\ ******************************************************************************/ \******************************************************************************/
#include <string> #include <string>
#include <cstdlib> #include <cstdlib>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment