Develop and Download Open Source Software

Browse Subversion Repository

Diff of /branches/ssh_chacha20poly1305/ttssh2/ttxssh/ssh.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3047 by maya, Thu Oct 18 07:57:33 2007 UTC revision 3057 by maya, Sun Oct 28 15:55:48 2007 UTC
# Line 100  typedef enum { Line 100  typedef enum {
100  #define SSH_PROTOFLAG_SCREEN_NUMBER 1  #define SSH_PROTOFLAG_SCREEN_NUMBER 1
101  #define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2  #define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2
102    
103    // for SSH1
104  #define SSH_MAX_SEND_PACKET_SIZE   250000  #define SSH_MAX_SEND_PACKET_SIZE   250000
105    
106    // for SSH2
107    /* default window/packet sizes for tcp/x11-fwd-channel */
108    // changed CHAN_SES_WINDOW_DEFAULT from 32KB to 128KB. (2007.10.29 maya)
109    #define CHAN_SES_PACKET_DEFAULT (32*1024)
110    #define CHAN_SES_WINDOW_DEFAULT (4*CHAN_SES_PACKET_DEFAULT)
111    #define CHAN_TCP_PACKET_DEFAULT (32*1024)
112    #define CHAN_TCP_WINDOW_DEFAULT (4*CHAN_TCP_PACKET_DEFAULT)
113    #if 0 // unused
114    #define CHAN_X11_PACKET_DEFAULT (16*1024)
115    #define CHAN_X11_WINDOW_DEFAULT (4*CHAN_X11_PACKET_DEFAULT)
116    #endif
117    
118    
119  /* SSH2 constants */  /* SSH2 constants */
120    

Legend:
Removed from v.3047  
changed lines
  Added in v.3057

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26