Home | History | Annotate | Download | only in rpc

Lines Matching refs:sendsz

151  * sendsz and recvsz are the maximum allowable packet sizes that can be
164 u_int sendsz, /* buffer recv size */
226 sendsz = __rpc_get_t_size(si.si_af, si.si_proto, (int)sendsz);
228 if ((sendsz == 0) || (recvsz == 0)) {
239 sendsz = ((sendsz + 3) / 4) * 4;
241 cu = malloc(sizeof (*cu) + sendsz + recvsz);
258 cu->cu_sendsz = sendsz;
263 xdrmem_create(&(cu->cu_outxdrs), cu->cu_outbuf, sendsz, XDR_ENCODE);
303 mem_free(cu, sizeof (*cu) + sendsz + recvsz);