mirror of
https://github.com/gusaul/grpcox.git
synced 2024-12-25 01:41:11 +00:00
commit
8534ee1dc1
|
@ -47,6 +47,11 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="custom-control custom-checkbox">
|
||||
<input type="checkbox" class="custom-control-input" id="use-tls">
|
||||
<label class="custom-control-label" for="use-tls">Use TLS</label>
|
||||
</div>
|
||||
|
||||
<div class="custom-control custom-checkbox">
|
||||
<input type="checkbox" class="custom-control-input" id="restart-conn">
|
||||
<label class="custom-control-label" for="restart-conn">Restart Connection</label>
|
||||
|
|
|
@ -13,6 +13,9 @@ $('#get-services').click(function(){
|
|||
if($('#restart-conn').is(":checked")) {
|
||||
restart = "1"
|
||||
}
|
||||
if($('#use-tls').is(":checked")) {
|
||||
use_tls = "true"
|
||||
}
|
||||
|
||||
// determine whether the proto connection will use local proto or not
|
||||
const use_proto = $('#local-proto').is(":checked");
|
||||
|
|
Loading…
Reference in New Issue
Block a user