mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 09:14:06 +02:00
Update NativeState.php
sync garbage collection cycle of KerberosAuth and NativeState
This commit is contained in:
parent
c0ae9aa35f
commit
aa542ff141
1 changed files with 9 additions and 0 deletions
|
|
@ -38,6 +38,10 @@ class NativeState {
|
|||
/** @var bool */
|
||||
protected $connected = false;
|
||||
|
||||
// sync the garbage collection cycle
|
||||
// __deconstruct() of KerberosAuth should not called too soon
|
||||
protected $auth;
|
||||
|
||||
// see error.h
|
||||
const EXCEPTION_MAP = [
|
||||
1 => ForbiddenException::class,
|
||||
|
|
@ -108,6 +112,11 @@ class NativeState {
|
|||
|
||||
$auth->setExtraSmbClientOptions($this->state);
|
||||
/** @var bool $result */
|
||||
|
||||
// sync the garbage collection cycle
|
||||
// __deconstruct() of KerberosAuth should not called too soon
|
||||
$this->auth = $auth;
|
||||
|
||||
$result = @smbclient_state_init($this->state, $auth->getWorkgroup(), $auth->getUsername(), $auth->getPassword());
|
||||
|
||||
$this->testResult($result, '');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue