mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-11-08 11:31:01 +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"
|
||||
else
|
||||
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"
|
||||
fi
|
||||
;;
|
||||
@ -729,9 +728,15 @@ X
|
||||
|
||||
ControlSocket $base/var/tor/.control
|
||||
DataDirectory $base/var/tor
|
||||
AutomapHostsOnResolve 1
|
||||
SocksPort 9050
|
||||
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
|
||||
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
|
||||
int hex2int(string hex);
|
||||
#endif
|
||||
int is_localhost(string host);
|
||||
varargs string isotime(mixed ctim, int long);
|
||||
int legal_host(string ip, int port, string scheme, int udpflag);
|
||||
#ifdef varargs
|
||||
|
Loading…
Reference in New Issue
Block a user