1
0
Fork 0
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:
Steffen Vogel 2017-10-26 18:39:48 +02:00
parent 9f1929ddbb
commit 50b7ed9e6e

View file

@ -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