| 69 | struct sctp_tmit_chunk *chk, int hold_rlock); |
| 70 | |
| 71 | void |
| 72 | sctp_set_rwnd(struct sctp_tcb *stcb, struct sctp_association *asoc) |
| 73 | { |
| 74 | asoc->my_rwnd = sctp_calc_rwnd(stcb, asoc); |
| 75 | } |
| 76 | |
| 77 | /* Calculate what the rwnd would be */ |
| 78 | uint32_t |
no test coverage detected