| 565 | **********************************************************************/ |
| 566 | |
| 567 | void setEvilAllowEndpointDisplay() { |
| 568 | options = { |
| 569 | {"Disallow", |
| 570 | [=]() { bruceConfig.setEvilAllowEndpointDisplay(false); }, |
| 571 | bruceConfig.evilPortalEndpoints.showEndpoints == false}, |
| 572 | {"Allow", |
| 573 | [=]() { bruceConfig.setEvilAllowEndpointDisplay(true); }, |
| 574 | bruceConfig.evilPortalEndpoints.showEndpoints == true }, |
| 575 | }; |
| 576 | loopOptions(options, bruceConfig.evilPortalEndpoints.showEndpoints); |
| 577 | } |
| 578 | |
| 579 | /********************************************************************* |
| 580 | ** Function: setEvilPasswordMode |
nothing calls this directly
no test coverage detected