Lines Matching defs:new_inp

2668 sctp_move_pcb_and_assoc(struct sctp_inpcb *old_inp, struct sctp_inpcb *new_inp,
2680 SCTP_INP_WLOCK(new_inp);
2684 new_inp->sctp_ep.time_of_secret_change =
2686 memcpy(new_inp->sctp_ep.secret_key, old_inp->sctp_ep.secret_key,
2688 new_inp->sctp_ep.current_secret_number =
2690 new_inp->sctp_ep.last_secret_number =
2692 new_inp->sctp_ep.size_of_a_cookie = old_inp->sctp_ep.size_of_a_cookie;
2695 stcb->sctp_socket = new_inp->sctp_socket;
2696 stcb->sctp_ep = new_inp;
2699 lport = new_inp->sctp_lport = old_inp->sctp_lport;
2707 /* Now insert the new_inp into the TCP connected hash */
2710 LIST_INSERT_HEAD(head, new_inp, sctp_hash);
2712 new_inp->sctp_flags &= ~SCTP_PCB_FLAGS_UNBOUND;
2715 LIST_INSERT_HEAD(&new_inp->sctp_asoc_list, stcb, sctp_tcblist);
2724 lhd = &new_inp->sctp_asocidhash[SCTP_PCBHASH_ASOC(stcb->asoc.assoc_id,
2725 new_inp->hashasocidmark)];
2730 sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, new_inp,
2735 if (new_inp->sctp_tcbhash != NULL) {
2736 SCTP_HASH_FREE(new_inp->sctp_tcbhash, new_inp->sctp_hashmark);
2737 new_inp->sctp_tcbhash = NULL;
2739 if ((new_inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) == 0) {
2757 LIST_INSERT_HEAD(&new_inp->sctp_addr_list, laddr,
2759 new_inp->laddr_count++;
2767 * care if they are running or not just blast in the new_inp into
2771 stcb->asoc.dack_timer.ep = (void *)new_inp;
2772 stcb->asoc.asconf_timer.ep = (void *)new_inp;
2773 stcb->asoc.strreset_timer.ep = (void *)new_inp;
2774 stcb->asoc.shut_guard_timer.ep = (void *)new_inp;
2775 stcb->asoc.autoclose_timer.ep = (void *)new_inp;
2776 stcb->asoc.delayed_event_timer.ep = (void *)new_inp;
2777 stcb->asoc.delete_prim_timer.ep = (void *)new_inp;
2780 net->pmtu_timer.ep = (void *)new_inp;
2781 net->hb_timer.ep = (void *)new_inp;
2782 net->rxt_timer.ep = (void *)new_inp;
2784 SCTP_INP_WUNLOCK(new_inp);