Updated TODO

This commit is contained in:
Tristan B. Kildaire 2020-07-18 17:31:36 +02:00
parent 99d03d63ca
commit eaf7caea06
1 changed files with 1 additions and 1 deletions

View File

@ -611,7 +611,7 @@ public final class ButterflyClient : Thread
/* Deliver the mail to the remote server */
Socket remoteServer = new Socket(AddressFamily.INET, SocketType.STREAM, ProtocolType.TCP);
/* TODO: Split domain here to address:port */
/* TODO: Add check over here to make sure these are met */
string remoteHost = split(domain, ":")[0];
ushort remotePort = to!(ushort)(split(domain, ":")[1]);