ircsharp/IRCRobots/ITCPTransport.cs

11 lines
239 B
C#

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