* @copyright 2015 Jan Altensen (Stricted) */ interface ISpeedport { /** * login into the router with the given password * * @param string $password */ public function login ($password); /** * get the csrf_token */ public function getToken (); /** * check if we are logged in * * @param boolean $exception */ public function checkLogin ($exception = true); }