mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
drop-packets off, not on, by default
This commit is contained in:
parent
3ebcc01e86
commit
b4381e8403
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ DICTS=${DICTS:-dict.xwd}
|
|||
SAVE_GOOD=${SAVE_GOOD:-YES}
|
||||
MAXDEVS=${MAXDEVS:-4}
|
||||
RESIGN_RATIO=${RESIGN_RATIO:-$((NGAMES/3))}
|
||||
DROP_N=${DROP_N:-1}
|
||||
DROP_N=${DROP_N:-0}
|
||||
|
||||
declare -a DICTS_ARR
|
||||
for DICT in $DICTS; do
|
||||
|
@ -45,7 +45,7 @@ fi
|
|||
usage() {
|
||||
echo "usage: [env=val *] $0" 1>&2
|
||||
echo " current env variables and their values: " 1>&2
|
||||
for VAR in NGAMES NROOMS USE_GTK TIMEOUT HOST PORT DICTS SAVE_GOOD MAXDEVS RESIGN_RATIO; do
|
||||
for VAR in NGAMES NROOMS USE_GTK TIMEOUT HOST PORT DICTS SAVE_GOOD MAXDEVS RESIGN_RATIO DROP_N; do
|
||||
echo "$VAR:" $(eval "echo \$${VAR}") 1>&2
|
||||
done
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue