LLInterface

- Formatted
This commit is contained in:
Tristan B. Velloza Kildaire 2024-01-24 15:21:21 +02:00
parent 15b13b6e58
commit a3fc8b4f5e
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ public class LLInterface : Link
// we could send via any socket probably, just destination address is iportant
writeln("transmit LLInterface to: "~addr);
writeln("transmit LLInterface to (Address object): ", getAddress_fromStringWithKak(addr));
auto i=this.peerSock.sendTo(xmit, getAddress_fromStringWithKak(addr));
auto i = this.peerSock.sendTo(xmit, getAddress_fromStringWithKak(addr));
writeln("transmit LLInterface to: "~addr~" with return-no: ", i);
}
catch(SocketException e)