Example #1
0
 public CConnectionContext(string host, uint port, string userId, string password, tagEncryptionMethod em, bool zip, bool v6)
 {
     Host            = host;
     Port            = port;
     UserId          = userId;
     m_Password      = password;
     EncrytionMethod = em;
     Zip             = zip;
     V6 = v6;
 }
Example #2
0
 public CConnectionContext(string host, uint port, string userId, string password, tagEncryptionMethod em)
 {
     Host            = host;
     Port            = port;
     UserId          = userId;
     m_Password      = password;
     EncrytionMethod = em;
     Zip             = false;
     V6 = false;
 }
Example #3
0
 internal static extern void SetDefaultEncryptionMethod(tagEncryptionMethod em);
Example #4
0
 internal static extern void SetEncryptionMethod(IntPtr h, tagEncryptionMethod em);
Example #5
0
 internal static extern void SetEncryptionMethod(IntPtr h, tagEncryptionMethod em);
Example #6
0
 public CConnectionContext(string host, uint port, string userId, string password, tagEncryptionMethod em, bool zip, bool v6)
 {
     Host = host;
     Port = port;
     UserId = userId;
     m_Password = password;
     EncrytionMethod = em;
     Zip = zip;
     V6 = v6;
 }
Example #7
0
 public CConnectionContext(string host, uint port, string userId, string password, tagEncryptionMethod em)
 {
     Host = host;
     Port = port;
     UserId = userId;
     m_Password = password;
     EncrytionMethod = em;
     Zip = false;
     V6 = false;
 }
Example #8
0
 internal static extern void SetDefaultEncryptionMethod(tagEncryptionMethod em);