1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

parser: renamed flags, testServer: added routing only option

This commit is contained in:
tg(x) 2011-04-30 17:07:01 +02:00
parent 3670395c97
commit 4f61f07ff2
5 changed files with 23 additions and 12 deletions

View file

@ -27,9 +27,15 @@ test: ${TARGETS}
netstart:
./testServer ${PORT}
netstartr:
./testServer ${PORT} -r
netstartv:
./testServer ${PORT} -v
netstartrv:
./testServer ${PORT} -r -v
nettest:
for f in packets/full-*; do echo ">> $$f"; cat $$f | nc localhost ${PORT} | diff -u $$f -; done