LibraryClient.cs
上传用户:szltgg
上传日期:2019-05-16
资源大小:604k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

C#

  1. /*
  2.  Copyright (c) 2005 Poderosa Project, All Rights Reserved.
  3.  This file is a part of the Granados SSH Client Library that is subject to
  4.  the license included in the distributed package.
  5.  You may not use this file except in compliance with the license.
  6.  $Id: LibraryClient.cs,v 1.2 2005/04/20 08:58:56 okajima Exp $
  7. */
  8. using System;
  9. namespace Granados.SSHC
  10. {
  11. //param connectionInfo is identical to the ConnectionInfo property of the connection 
  12. public delegate bool HostKeyCheckCallback(SSHConnectionInfo connectionInfo);
  13. //port forwarding check result
  14. public struct PortForwardingCheckResult {
  15. /**
  16.  * if you allow this request, set 'allowed' to true.
  17.  */ 
  18. public bool allowed;
  19. /**
  20.  * if you allow this request, you must set 'channel' for this request. otherwise, 'channel' is ignored
  21.  */ 
  22. public ISSHChannelEventReceiver channel;
  23. /**
  24.  * if you disallow this request, you can set 'reason_code'.
  25. The following reason codes are defined:
  26. #define SSH_OPEN_ADMINISTRATIVELY_PROHIBITED    1
  27. #define SSH_OPEN_CONNECT_FAILED                 2
  28. #define SSH_OPEN_UNKNOWN_CHANNEL_TYPE           3
  29. #define SSH_OPEN_RESOURCE_SHORTAGE              4
  30.  */
  31. public int  reason_code;
  32. /**
  33.  * if you disallow this request, you can set 'reason_message'. this message can contain only ASCII characters.
  34.  */ 
  35. public string reason_message;
  36. }
  37. /// <summary>
  38. /// Connection specific receiver
  39. /// </summary>
  40. public interface ISSHConnectionEventReceiver {
  41. void OnDebugMessage(bool always_display, byte[] msg);
  42. void OnIgnoreMessage(byte[] msg);
  43. void OnUnknownMessage(byte type, byte[] data);
  44. void OnError(Exception error, string msg);
  45. void OnConnectionClosed();
  46. void OnAuthenticationPrompt(string[] prompts); //keyboard-interactive only
  47. PortForwardingCheckResult CheckPortForwardingRequest(string remote_host, int remote_port, string originator_ip, int originator_port);
  48. void EstablishPortforwarding(ISSHChannelEventReceiver receiver, SSHChannel channel);
  49. }
  50. /// <summary>
  51. /// Channel specific receiver 
  52. /// </summary>
  53. public interface ISSHChannelEventReceiver {
  54. void OnData(byte[] data, int offset, int length);
  55. void OnExtendedData(int type, byte[] data);
  56. void OnChannelClosed();
  57. void OnChannelEOF();
  58. void OnChannelError(Exception error, string msg);
  59. void OnChannelReady();
  60. void OnMiscPacket(byte packet_type, byte[] data, int offset, int length);
  61. }
  62. }