mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
297947bec7
Issue #4722
18 lines
384 B
Tcl
18 lines
384 B
Tcl
# Network echo test (lwIP, UDP)
|
|
#
|
|
# Example test command
|
|
#
|
|
# for i in {1..10}; do
|
|
# dd if=/dev/urandom bs=736 count=1 | xxd -plain | tr -d '\n'
|
|
# sleep 0.1
|
|
# done | nc -u 10.0.2.55 7
|
|
#
|
|
|
|
proc ipstack { } { return lwip }
|
|
proc protocol { } { return udp }
|
|
proc use_dynamic_rom { } { return false }
|
|
|
|
source ${genode_dir}/repos/libports/run/netty.inc
|
|
|
|
# vi: set ft=tcl :
|