Revision 72887d24
Von Sven Schöling vor fast 13 Jahren hinzugefügt
SL/Auth.pm | ||
---|---|---|
47 | 47 |
$self->{RIGHTS} = { }; |
48 | 48 |
$self->{unique_counter} = 0; |
49 | 49 |
$self->{column_information} = SL::Auth::ColumnInformation->new(auth => $self); |
50 |
$self->{authenticator}->reset; |
|
50 | 51 |
} |
51 | 52 |
|
52 | 53 |
sub get_user_dbh { |
SL/Auth/DB.pm | ||
---|---|---|
25 | 25 |
return $self; |
26 | 26 |
} |
27 | 27 |
|
28 |
sub reset { |
|
29 |
# nothing to do here |
|
30 |
} |
|
31 |
|
|
28 | 32 |
sub authenticate { |
29 | 33 |
$main::lxdebug->enter_sub(); |
30 | 34 |
|
SL/Auth/LDAP.pm | ||
---|---|---|
27 | 27 |
return $self; |
28 | 28 |
} |
29 | 29 |
|
30 |
sub reset { |
|
31 |
my ($self) = @_; |
|
32 |
$self->{ldap} = undef; |
|
33 |
$self->{dn_cache} = { }; |
|
34 |
} |
|
35 |
|
|
30 | 36 |
sub _connect { |
31 | 37 |
$main::lxdebug->enter_sub(); |
32 | 38 |
|
Auch abrufbar als: Unified diff
LDAP Authentifikation zwischen requests korrekt resetten.