// assign unique id (local or remote inferred)
channelState.setName("temp-uuid-" + nextSession.incrementAndGet());
InetSocketAddress address = (InetSocketAddress) channel.getRemoteAddress();
if (needsPeering.remove(address)) {
log.debug("{} >>> starting peering with {}", MeshyServer.this, address);
new PeerSource(this, channelState.getName());
}
}