mirror of
https://github.com/Relintai/mono.git
synced 2024-11-12 10:25:32 +01:00
9 lines
222 B
C#
9 lines
222 B
C#
|
namespace GodotTools.IdeMessaging
|
||
|
{
|
||
|
public interface IHandshake
|
||
|
{
|
||
|
string GetHandshakeLine(string identity);
|
||
|
bool IsValidPeerHandshake(string handshake, out string identity, ILogger logger);
|
||
|
}
|
||
|
}
|