mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
socket: added integration for AF_UNIX sockets
This commit is contained in:
parent
9f1929ddbb
commit
50b7ed9e6e
1 changed files with 6 additions and 1 deletions
|
@ -37,7 +37,7 @@ NUM_SAMPLES=${NUM_SAMPLES:-100}
|
|||
villas-signal random -l ${NUM_SAMPLES} -n > ${INPUT_FILE}
|
||||
|
||||
for FORMAT in villas-human villas-binary villas-web csv json gtnet-fake raw-flt32; do
|
||||
for LAYER in udp ip eth; do
|
||||
for LAYER in udp ip eth unix; do
|
||||
for ENDIAN in big little; do
|
||||
for VERIFY_SOURCE in true false; do
|
||||
|
||||
|
@ -67,6 +67,11 @@ case ${LAYER} in
|
|||
LOCAL="00:00:00:00:00:00%lo:34997"
|
||||
REMOTE="00:00:00:00:00:00%lo:34997"
|
||||
;;
|
||||
|
||||
unix)
|
||||
LOCAL=$(mktemp)
|
||||
REMOTE=${LOCAL}
|
||||
;;
|
||||
esac
|
||||
|
||||
cat > ${CONFIG_FILE} << EOF
|
||||
|
|
Loading…
Add table
Reference in a new issue