mirror of
https://github.com/opnsense/plugins.git
synced 2026-04-28 09:40:02 -04:00
security/tor: Remove sessionClose()
This commit is contained in:
parent
586f637975
commit
499b8ff7ca
6 changed files with 0 additions and 8 deletions
|
|
@ -43,7 +43,6 @@ class ExitaclController extends ApiMutableModelControllerBase
|
|||
}
|
||||
public function getaclAction($uuid = null)
|
||||
{
|
||||
$this->sessionClose();
|
||||
return $this->getBase('exitpolicy', 'policy', $uuid);
|
||||
}
|
||||
public function addaclAction()
|
||||
|
|
|
|||
|
|
@ -82,7 +82,6 @@ class GeneralController extends ApiMutableModelControllerBase
|
|||
|
||||
public function gethidservauthAction($uuid = null)
|
||||
{
|
||||
$this->sessionClose();
|
||||
return $this->getBase('client_auth', 'client_authentications.client_auth', $uuid);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,6 @@ class HiddenserviceController extends ApiMutableModelControllerBase
|
|||
}
|
||||
public function getserviceAction($uuid = null)
|
||||
{
|
||||
$this->sessionClose();
|
||||
return $this->getBase('hiddenservice', 'service', $uuid);
|
||||
}
|
||||
public function addserviceAction()
|
||||
|
|
|
|||
|
|
@ -40,7 +40,6 @@ class HiddenserviceaclController extends ApiMutableModelControllerBase
|
|||
}
|
||||
public function getaclAction($uuid = null)
|
||||
{
|
||||
$this->sessionClose();
|
||||
return $this->getBase('hiddenserviceacl', 'hiddenserviceacl', $uuid);
|
||||
}
|
||||
public function addaclAction()
|
||||
|
|
|
|||
|
|
@ -132,9 +132,6 @@ class ServiceController extends ApiControllerBase
|
|||
public function reconfigureAction()
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
// close session for long running action
|
||||
$this->sessionClose();
|
||||
|
||||
$general = new General();
|
||||
$backend = new Backend();
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,6 @@ class SocksaclController extends ApiMutableModelControllerBase
|
|||
}
|
||||
public function getaclAction($uuid = null)
|
||||
{
|
||||
$this->sessionClose();
|
||||
return $this->getBase('policy', 'policy', $uuid);
|
||||
}
|
||||
public function addaclAction()
|
||||
|
|
|
|||
Loading…
Reference in a new issue