()
| 179 | } |
| 180 | |
| 181 | func (c *cliConnection) IsSSLDisabled() (bool, error) { |
| 182 | var result bool |
| 183 | |
| 184 | err := c.withClientDo(func(client *rpc.Client) error { |
| 185 | return client.Call("CliRpcCmd.IsSSLDisabled", "", &result) |
| 186 | }) |
| 187 | |
| 188 | return result, err |
| 189 | } |
| 190 | |
| 191 | func (c *cliConnection) IsLoggedIn() (bool, error) { |
| 192 | var result bool |
nothing calls this directly
no test coverage detected