Searched refs:send_size (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/traceroute/
H A Dtraceroute_aux.c205 int send_size; local
222 send_size = packlen - optlen;
224 send_size = packlen - optlen - sizeof (struct ip);
226 send_size = packlen - optlen - sizeof (struct ip) -
299 cc = sendto(sndsock, (char *)outip, send_size, 0, to,
302 cc = sendto(sndsock, (char *)outicmp, send_size, 0, to,
305 cc = sendto(sndsock, (char *)outp, send_size, 0, to,
309 if (cc < 0 || cc != send_size) {
315 prog, hostname, send_size, cc);
H A Dtraceroute_aux6.c310 int send_size; local
319 send_size = packlen - sizeof (struct ip6_hdr) - optlen;
323 send_size -= sizeof (struct udphdr);
351 iov.iov_len = send_size;
358 if (cc < 0 || cc != send_size) {
364 prog, hostname, send_size, cc);
/illumos-gate/usr/src/cmd/krb5/slave/
H A Dkprop.c646 krb5_ui_4 send_size; local
651 send_size = htonl(database_size);
652 inbuf.data = (char *) &send_size;
653 inbuf.length = sizeof(send_size); /* must be 4, really */
766 memcpy((char *)&send_size, outbuf.data, sizeof(send_size));
767 send_size = ntohl(send_size);
768 if (send_size != database_size) {
771 send_size, database_siz
[all...]
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_fusion.c438 tcp_fuse_output(tcp_t *tcp, mblk_t *mp, uint32_t send_size) argument
448 uint32_t recv_size = send_size;
462 if (send_size == 0) {
628 uint_t, send_size, uint_t, peer_tcp->tcp_rcv_cnt);
638 tcp->tcp_last_sent_len = send_size;
641 tcp->tcp_snxt += send_size;
648 TCPS_UPDATE_MIB(tcps, tcpOutDataBytes, send_size);
652 TCPS_UPDATE_MIB(tcps, tcpInDataInorderBytes, send_size);

Completed in 100 milliseconds