Searched defs:buf_incre (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dclient.c224 const int buf_incre = OCSP_BUFSIZE; /* 1 KB at a time */ local
225 const int maxBufSize = 8 * buf_incre; /* 8 KB max */
264 if ((buflen - offset) < buf_incre) {
265 buflen += buf_incre;
288 bytes = read(sock, buf + offset, buf_incre);
416 buflen = (1 + (offset-1) / buf_incre) * buf_incre;
422 if ((buflen - offset) < buf_incre) {
423 buflen += buf_incre;
446 bytes = read(sock, buf + offset, buf_incre);
[all...]

Completed in 59 milliseconds