mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-11-09 20:11:00 +00:00
here's the bugfix: a missing prototype declaration
This commit is contained in:
parent
baff8768f5
commit
0120646dd2
@ -679,7 +679,6 @@ case "\$1" in
|
|||||||
rm $sandbox/data/$driver.pid && echo "OK"
|
rm $sandbox/data/$driver.pid && echo "OK"
|
||||||
else
|
else
|
||||||
echo -n "Killing psyced brutally ... "
|
echo -n "Killing psyced brutally ... "
|
||||||
kill -1 \`cat $sandbox/data/$driver.pid\` >/dev/null 2>&1
|
|
||||||
kill -3 \`cat $sandbox/data/psyced.pid\` && echo "OK"
|
kill -3 \`cat $sandbox/data/psyced.pid\` && echo "OK"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
@ -729,9 +728,15 @@ X
|
|||||||
|
|
||||||
ControlSocket $base/var/tor/.control
|
ControlSocket $base/var/tor/.control
|
||||||
DataDirectory $base/var/tor
|
DataDirectory $base/var/tor
|
||||||
|
AutomapHostsOnResolve 1
|
||||||
SocksPort 9050
|
SocksPort 9050
|
||||||
DNSPort 9053
|
DNSPort 9053
|
||||||
AutomapHostsOnResolve 1
|
|
||||||
|
# If your tor executable does not support this feature,
|
||||||
|
# .onion domain names will not 'resolve' like normal ones.
|
||||||
|
TransPort 9040
|
||||||
|
# See also the iptables call in the init script.
|
||||||
|
# Both are not fundamentally necesseary, you can remove them.
|
||||||
|
|
||||||
HiddenServiceDir $base/etc/tor/.onion
|
HiddenServiceDir $base/etc/tor/.onion
|
||||||
X
|
X
|
||||||
|
1
world/drivers/psyclpc
Symbolic link
1
world/drivers/psyclpc
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
ldmud
|
@ -18,6 +18,7 @@ varargs object find_person(string name, vaint lowercazed);
|
|||||||
#ifndef hex2int
|
#ifndef hex2int
|
||||||
int hex2int(string hex);
|
int hex2int(string hex);
|
||||||
#endif
|
#endif
|
||||||
|
int is_localhost(string host);
|
||||||
varargs string isotime(mixed ctim, int long);
|
varargs string isotime(mixed ctim, int long);
|
||||||
int legal_host(string ip, int port, string scheme, int udpflag);
|
int legal_host(string ip, int port, string scheme, int udpflag);
|
||||||
#ifdef varargs
|
#ifdef varargs
|
||||||
|
Loading…
Reference in New Issue
Block a user