- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Renci.SshNet.Messages.Transport
- {
- /// <summary>
- /// Indicates that message that implement this interface is allowed during key exchange phase
- /// </summary>
- public interface IKeyExchangedAllowed
- {
- }
- }
|