Lines Matching defs:new_inp

2645 sctp_move_pcb_and_assoc(struct sctp_inpcb *old_inp, struct sctp_inpcb *new_inp,
2657 SCTP_INP_WLOCK(new_inp);
2661 new_inp->sctp_ep.time_of_secret_change =
2663 memcpy(new_inp->sctp_ep.secret_key, old_inp->sctp_ep.secret_key,
2665 new_inp->sctp_ep.current_secret_number =
2667 new_inp->sctp_ep.last_secret_number =
2669 new_inp->sctp_ep.size_of_a_cookie = old_inp->sctp_ep.size_of_a_cookie;
2672 stcb->sctp_socket = new_inp->sctp_socket;
2673 stcb->sctp_ep = new_inp;
2676 lport = new_inp->sctp_lport = old_inp->sctp_lport;
2684 /* Now insert the new_inp into the TCP connected hash */
2687 LIST_INSERT_HEAD(head, new_inp, sctp_hash);
2689 new_inp->sctp_flags &= ~SCTP_PCB_FLAGS_UNBOUND;
2692 LIST_INSERT_HEAD(&new_inp->sctp_asoc_list, stcb, sctp_tcblist);
2701 lhd = &new_inp->sctp_asocidhash[SCTP_PCBHASH_ASOC(stcb->asoc.assoc_id,
2702 new_inp->hashasocidmark)];
2707 sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, new_inp,
2712 if (new_inp->sctp_tcbhash != NULL) {
2713 SCTP_HASH_FREE(new_inp->sctp_tcbhash, new_inp->sctp_hashmark);
2714 new_inp->sctp_tcbhash = NULL;
2716 if ((new_inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) == 0) {
2734 LIST_INSERT_HEAD(&new_inp->sctp_addr_list, laddr,
2736 new_inp->laddr_count++;
2745 stcb->asoc.dack_timer.ep = new_inp;
2746 SCTP_INP_INCR_REF(new_inp);
2750 stcb->asoc.asconf_timer.ep = new_inp;
2751 SCTP_INP_INCR_REF(new_inp);
2755 stcb->asoc.strreset_timer.ep = new_inp;
2756 SCTP_INP_INCR_REF(new_inp);
2760 stcb->asoc.shut_guard_timer.ep = new_inp;
2761 SCTP_INP_INCR_REF(new_inp);
2765 stcb->asoc.autoclose_timer.ep = new_inp;
2766 SCTP_INP_INCR_REF(new_inp);
2770 stcb->asoc.delete_prim_timer.ep = new_inp;
2771 SCTP_INP_INCR_REF(new_inp);
2777 net->pmtu_timer.ep = new_inp;
2778 SCTP_INP_INCR_REF(new_inp);
2782 net->hb_timer.ep = new_inp;
2783 SCTP_INP_INCR_REF(new_inp);
2787 net->rxt_timer.ep = new_inp;
2788 SCTP_INP_INCR_REF(new_inp);
2791 SCTP_INP_WUNLOCK(new_inp);