Home
last modified time | relevance | path

Searched refs:cansend (Results 1 – 5 of 5) sorted by relevance

/titanic_50/usr/src/uts/common/inet/sctp/
H A Dsctp_output.c816 int32_t firstseg_len, uint32_t cansend, sctp_faddr_t *fp) in sctp_get_msg_to_send() argument
906 if (cansend > 0 && sctp->sctp_xmit_unsent != NULL) { in sctp_get_msg_to_send()
922 meta = sctp_chunkify(sctp, fp->sf_pmss, firstseg_len, cansend); in sctp_get_msg_to_send()
994 uint32_t cansend; in sctp_output() local
1023 cansend = sctp->sctp_frwnd; in sctp_output()
1024 if (sctp->sctp_unsent < cansend) in sctp_output()
1025 cansend = sctp->sctp_unsent; in sctp_output()
1032 if ((cansend < sctp->sctp_current->sf_pmss / 2) && in sctp_output()
1036 (cansend == 0 && sctp->sctp_unacked == 0 && in sctp_output()
1044 while (cansend > 0 && num_pkt-- != 0) { in sctp_output()
[all …]
H A Dsctp_cookie.c935 int32_t cansend; in sctp_send_cookie_echo() local
1146 cansend = MIN(sctp->sctp_unsent, sctp->sctp_frwnd); in sctp_send_cookie_echo()
1148 cansend, NULL); in sctp_send_cookie_echo()
1161 (seglen - sizeof (*sdc)) > cansend) { in sctp_send_cookie_echo()
/titanic_50/usr/src/uts/common/fs/sockfs/
H A Dsocknotify.c175 KSOCKET_CALLBACK(so, cansend, 0); in so_notify_writable()
/titanic_50/usr/src/uts/common/io/
H A Dgld.c2758 int (*acceptfunc)(), void (*send)(), int (*cansend)(), gld_t **fgldp) in gld_sendup_vlan() argument
2802 if (!(*cansend)(gld->gld_qptr)) { in gld_sendup_vlan()
2859 int (*cansend)(queue_t *qp); in gld_sendup() local
2904 cansend = canput; in gld_sendup()
2907 cansend = canputnext; in gld_sendup()
2915 cansend, &fgld); in gld_sendup()
2919 cansend, &fgld); in gld_sendup()
/titanic_50/usr/src/uts/common/io/ksocket/
H A Dksocket.c677 SETCALLBACK(so, cb, cansend, KSOCKET_CB_CANSEND) in ksocket_setcallbacks()