public TBufferedTransport(TStreamTransport transport, int bufSize)
		{
			this.bufSize = bufSize;
			this.transport = transport;
			InitBuffers();
		}
		public TBufferedTransport(TStreamTransport transport)
			:this(transport, 1024)
		{

		}