| 1234567891011121314151617181920212223242526272829303132333435 |
- using Renci.SshNet.Messages.Authentication;
- namespace Renci.SshNet.Compression
- {
- /// <summary>
- /// Represents "zlib@openssh.org" compression implementation
- /// </summary>
- public class ZlibOpenSsh : Compressor
- {
- /// <summary>
- /// Gets algorithm name.
- /// </summary>
- public override string Name
- {
- get { return "zlib@openssh.org"; }
- }
- /// <summary>
- /// Initializes the algorithm
- /// </summary>
- /// <param name="session">The session.</param>
- public override void Init(Session session)
- {
- base.Init(session);
- session.UserAuthenticationSuccessReceived += Session_UserAuthenticationSuccessReceived;
- }
- private void Session_UserAuthenticationSuccessReceived(object sender, MessageEventArgs<SuccessMessage> e)
- {
- IsActive = true;
- Session.UserAuthenticationSuccessReceived -= Session_UserAuthenticationSuccessReceived;
- }
- }
- }
|