version 1.374, 2007/05/31 05:17:48
|
version 1.376, 2007/07/25 22:52:07
|
Line 4640 sub inst_usertypes_handler {
|
Line 4640 sub inst_usertypes_handler {
|
} |
} |
®ister_handler("inst_usertypes", \&inst_usertypes_handler, 0, 1, 0); |
®ister_handler("inst_usertypes", \&inst_usertypes_handler, 0, 1, 0); |
|
|
|
sub inst_dirsrch_handler { |
|
my ($cmd, $tail, $client) = @_; |
|
my ($domain,$srchby,$srchterm,$srchtype) = split(/:/, $tail); |
|
$srchby = &unescape($srchby); |
|
$srchterm = &unescape($srchterm); |
|
my $userinput = $cmd.":".$tail; # For logging purposes. |
|
my (%instusers,%instids,$result,$res); |
|
eval { |
|
local($SIG{__DIE__})='DEFAULT'; |
|
$result=&localenroll::get_userinfo($domain,undef,undef,\%instusers,\%instids,undef,$srchby,$srchterm,$srchtype); |
|
}; |
|
if ($result eq 'ok') { |
|
if (keys(%instusers) > 0) { |
|
foreach my $key (keys(%instusers)) { |
|
my $usrstr = &Apache::lonnet::hash2str(%{$instusers{$key}}); |
|
$res.=&escape($key).'='.&escape($usrstr).'&'; |
|
} |
|
} |
|
$res=~s/\&$//; |
|
} |
|
&Reply($client, "$res\n", $userinput); |
|
} |
|
®ister_handler("instdirsrch", \&inst_dirsrch_handler, 0, 1, 0); |
|
|
# mkpath makes all directories for a file, expects an absolute path with a |
# mkpath makes all directories for a file, expects an absolute path with a |
# file or a trailing / if just a dir is passed |
# file or a trailing / if just a dir is passed |
# returns 1 on success 0 on failure |
# returns 1 on success 0 on failure |
Line 5486 sub make_new_child {
|
Line 5510 sub make_new_child {
|
# ---------------- New known client connecting, could mean machine online again |
# ---------------- New known client connecting, could mean machine online again |
if (&Apache::lonnet::get_host_ip($currenthostid) ne $clientip |
if (&Apache::lonnet::get_host_ip($currenthostid) ne $clientip |
&& $clientip ne '127.0.0.1') { |
&& $clientip ne '127.0.0.1') { |
&Apache::lonnet::reconlonc(); |
&Apache::lonnet::reconlonc($clientname); |
} |
} |
&logthis("<font color='green'>Established connection: $clientname</font>"); |
&logthis("<font color='green'>Established connection: $clientname</font>"); |
&status('Will listen to '.$clientname); |
&status('Will listen to '.$clientname); |