ircsharp/IRCRobots/ITCPTransport.cs

10 lines
222 B
C#

using System.Threading.Tasks;
namespace IRCRobots
{
public interface ITCPTransport
{
public Task Connect(string hostname, int port, bool useTLS, bool verifyTLS = true, string? bindhost = null);
}
}