Commit c4e5c987 authored by Hauke Goldhammer's avatar Hauke Goldhammer

Remove paths from header comments

parent eeccec20
......@@ -3,8 +3,8 @@
* a broker. Server and client exchange integers in a 'ping-pong protocol'. *
* *
* Minimal setup: *
* - ./build/example/simple_broker -s 4242 *
* - ./build/example/simple_broker -c localhost 4242 *
* - simple_broker -s 4242 *
* - simple_broker -c localhost 4242 *
\******************************************************************************/
// Manual refs: 42-47 (Actors.tex)
......
......@@ -4,9 +4,9 @@
* terminal version in remote_actors/group_chat.cpp. *
* *
* Setup for a minimal chat between "alice" and "bob": *
* - ./build/examples/group_server -p 4242 *
* - ./build/examples/qt_group_chat -g remote:chatroom@localhost:4242 -n alice*
* - ./build/examples/qt_group_chat -g remote:chatroom@localhost:4242 -n bob *
* - group_server -p 4242 *
* - qt_group_chat -g remote:chatroom@localhost:4242 -n alice *
* - qt_group_chat -g remote:chatroom@localhost:4242 -n bob *
\******************************************************************************/
#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
// 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 client at the same host:
// - ./build/examples/distributed_calculator -c -p 4242
// Manual refs: 206-218 (ConfiguringActorSystems)
/******************************************************************************\
* This program is a distributed version of the math_actor example. *
* Client and server use a stateless request/response protocol and the client *
* is failure resilient by using a FIFO request queue. *
* The client auto-reconnects and also allows for server reconfiguration. *
* *
* Run server at port 4242: *
* - distributed_calculator -s -p 4242 *
* *
* Run client at the same host: *
* - distributed_calculator -c -p 4242 *
\******************************************************************************/
#include <array>
#include <cassert>
......
......@@ -3,9 +3,9 @@
* based on group communication. *
* *
* Setup for a minimal chat between "alice" and "bob": *
* - ./build/example/group_chat -s -p 4242 *
* - ./build/example/group_chat -g remote:chatroom@localhost:4242 -n alice *
* - ./build/example/group_chat -g remote:chatroom@localhost:4242 -n bob *
* - group_chat -s -p 4242 *
* - group_chat -g remote:chatroom@localhost:4242 -n alice *
* - group_chat -g remote:chatroom@localhost:4242 -n bob *
\******************************************************************************/
#include <cstdlib>
......
......@@ -3,10 +3,10 @@
* communication server. *
* *
* Setup for a minimal chat between "alice" and "bob": *
* - ./build/bin/group_server -p 4242 *
* - ./build/bin/group_chat -g remote:chatroom@localhost:4242 -n alice *
* - ./build/bin/group_chat -g remote:chatroom@localhost:4242 -n bob *
\ ******************************************************************************/
* - group_server -p 4242 *
* - group_chat -g remote:chatroom@localhost:4242 -n alice *
* - group_chat -g remote:chatroom@localhost:4242 -n bob *
\******************************************************************************/
#include <string>
#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