blob: 6387145a28d42a4bbfb4bdf5e42137265bd91ea3 (
plain)
1
2
3
4
5
6
7
8
|
namespace GodotTools.IdeMessaging
{
public interface IHandshake
{
string GetHandshakeLine(string identity);
bool IsValidPeerHandshake(string handshake, out string identity, ILogger logger);
}
}
|