| 12345678910111213141516171819202122232425262728293031323334353637 | using System;using System.Collections.Generic;using System.IO;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<Messages.Authentication.SuccessMessage> e)        {            this.IsActive = true;            this.Session.UserAuthenticationSuccessReceived -= Session_UserAuthenticationSuccessReceived;        }    }}
 |