}
private void maybeGetNetworkInterface() {
if (this.networkInterface!=null) return;
NetworkInterface tempNetworkInterface = null;
try {
if(ssl) {
tempNetworkInterface = SSLNetworkInterface.create(port, bindTo, allowedHosts, node.executor, true);
} else {
tempNetworkInterface = NetworkInterface.create(port, bindTo, allowedHosts, node.executor, true);