Commit 84cb4389 authored by Lucas Russo's avatar Lucas Russo

README.md: add TCP transport layer option instruction

parent 8b2e9e86
......@@ -216,12 +216,16 @@ Compile the examples
Run the server components with the helper script, like shown below:
./init.sh <broker_endpoint>
./init.sh <tranport type = [ipc|tcp]> <broker_endpoint>
Typically, one should choose the IPC transport method
for its faster than TCP. For instance:
./init.sh /tmp/bpm
./init.sh ipc /tmp/bpm
If one would like to use TCP, it should call, for instance:
./init.sh tcp 127.0.0.1:8888
Now we should be good to start making transactions.
......@@ -232,6 +236,15 @@ Change to the example applications folder
Run the Example application with verbose flag (-v)
and specifying a broker endpoint (-b)
./client -v -b ipc://<broker_endpoint>
./client -v -b <broker_endpoint>
Typically, one should choose the the IPC transport method
for its faster than TCP. For instance:
./client -v -b ipc:///tmp/bpm
If one would like to use TCP, it should call, for instance:
./client -v -b tcp://127.0.0.1:8888
Leds should be blinking in the FMC ADC board
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