zephyr/samples/net
Juan Manuel Cruz Alcaraz 4dc93fed2f misc: Remove generic PRINT macros from net samples
Remove generic PRINT macros from net samples and replace
with SYS_LOG  module.

Jira: ZEP-240

Change-Id: I4bec179c99056cce41e1f3495c162f25c3cd2364
Signed-off-by: Juan Manuel Cruz Alcaraz <juan.m.cruz.alcaraz@intel.com>
2016-08-05 20:36:52 +00:00
..
coap_observe_client misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
coap_server misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
common
dhcp_client misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
dns_client samples/net: DNS client application 2016-08-01 18:54:07 +00:00
dtls_client misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
dtls_server misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
echo_client misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
echo_server misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
loopback_test misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
mbedtls_sslclient samples/net : Adding mbedTLS sample client 2016-07-31 17:00:45 +00:00
nats_clients samples/net: Add network-related functions to NATS Subscriber 2016-08-01 14:31:27 -05:00
paho_mqtt_clients samples/net: Add network-related functions to MQTT Subscriber 2016-08-02 01:59:13 +00:00
test/test_15_4
test_15_4 misc: Remove generic PRINT macros from net samples 2016-08-05 20:36:52 +00:00
zperf
README

Description of various IP stack test applications
=================================================

echo_server
-----------

The echo server test implements a network server that listens
UDP sockets. If that socket receives data, the server reverses
the data and sends it back.

The echo client can be running in the host system in which
case you need to use SLIP to connect to qemu. This usage scenario
is described in net/ip/tools/README file. This is the default
if you type "make qemu" in echo_server test application directory.
The network IP stack hooks right under IP stack (network level)
and sends the IP packet to host using SLIP. The layer 2 is the
SLIP layer in this case, no radio layer is simulated or used.

The echo server qemu instance can also be running against echo
client that is running in another qemu. For this you need two
terminal windows. In terminal 1 go to echo_server directory
and type "make server". This will start the echo server and setup
qemu pipes in suitable way and it will also start monitor application
that will store the transferred network traffic into pcap file
for later analysis. Then in terminal 2 go to echo_client directory and
type "make client". This will start the echo client that will
start to send data to the server and verify that it has received
the data back correctly. In the two qemu case we are simulating
the whole radio network meaning that the saved pcap file will
contain 802.15.4 network packets.


echo_client
-----------

The echo client test implements a network client that will
send UDP data to the echo server. The client verifies that
it has received data to the sent message and that the data
is correct.

The echo server can be running in the host system in which case
you need to use SLIP to connect to qemu. This usage scenario
is described in net/ip/tools/README file. This is the default
if you type "make qemu" in echo_client test application directory.
The network IP stack hooks right under IP stack (network level)
and sends the IP packet to host using SLIP. The layer 2 is the
SLIP layer in this case, no radio layer is simulated or used.

The echo client qemu instance can also be running against echo
server that is running in another qemu. This test scenario is
described in echo_server chapter above.