comparison channel.h @ 124:8c08fd2b7f5b

0.44test4 probably also bumped the channel recv window sizing
author Matt Johnston <matt@ucc.asn.au>
date Tue, 14 Sep 2004 13:22:32 +0000
parents 10f4d3319780
children 82fcf3185616
comparison
equal deleted inserted replaced
123:a0db9a23f6d4 124:8c08fd2b7f5b
48 #define MAX_CHANNELS 100 /* simple mem restriction, includes each tcp/x11 48 #define MAX_CHANNELS 100 /* simple mem restriction, includes each tcp/x11
49 connection, so can't be _too_ small */ 49 connection, so can't be _too_ small */
50 50
51 #define CHAN_EXTEND_SIZE 3 /* how many extra slots to add when we need more */ 51 #define CHAN_EXTEND_SIZE 3 /* how many extra slots to add when we need more */
52 52
53 #define RECV_MAXWINDOW 4000 /* tweak */ 53 #define RECV_MAXWINDOW 8000 /* tweak */
54 #define RECV_WINDOWEXTEND 500 /* We send a "window extend" every 54 #define RECV_WINDOWEXTEND 1000 /* We send a "window extend" every
55 RECV_WINDOWEXTEND bytes */ 55 RECV_WINDOWEXTEND bytes */
56 #define RECV_MAXPACKET RECV_MAXWINDOW /* tweak */ 56 #define RECV_MAXPACKET RECV_MAXWINDOW /* tweak */
57 57
58 struct ChanType; 58 struct ChanType;
59 59