Added work in progress code

This commit is contained in:
Tristan B. Kildaire 2020-04-20 18:51:40 +02:00
parent 11e3a3a2f9
commit 402e567666
1 changed files with 34 additions and 1 deletions

View File

@ -17,4 +17,37 @@ public class UNIXListener : BesterListener
return unixSocket;
}
}
}
public class TCP4 : BesterListener
{
this(BesterServer besterServer, string path)
{
super(besterServer);
setServerSocket(setupUNIXSocket(path));
}
private Socket setupUNIXSocket(string path)
{
Socket unixSocket;
return unixSocket;
}
}
public class TCP6 : BesterListener
{
this(BesterServer besterServer, string path)
{
super(besterServer);
setServerSocket(setupUNIXSocket(path));
}
private Socket setupUNIXSocket(string path)
{
Socket unixSocket;
return unixSocket;
}
}