Home | History | Annotate | Download | only in auxprogs

Lines Matching full:req_len

730    ULong req_session_id = 0, req_offset = 0, req_len = 0;
797 &req_offset, &req_len)) {
813 if (ok && (req_len == 0 || req_len > 4*1024*1024)) {
817 if (ok && req_len + req_offset > conn_state[conn_no].file_size) {
825 UChar* unzBuf = my_malloc(req_len);
827 unzBuf, req_len, req_offset);
828 if (nRead != req_len) {
843 UInt zLenMax = req_len + req_len / 4 + 1024;
846 Int lzo_rc = lzo1x_1_compress(unzBuf, req_len,
849 //printf("XXXXX req_len %u zLen %u\n", (UInt)req_len, (UInt)zLen);
856 ("RDOK", req_session_id, req_offset, req_len, zLen, &buf);
862 conn_state[conn_no].stats_n_read_unz_bytes += req_len;