• Home
  • Raw
  • Download

Lines Matching refs:peer

41 						  struct sctp_transport *peer,  in sctp_transport_init()  argument
46 peer->af_specific = sctp_get_af_specific(addr->sa.sa_family); in sctp_transport_init()
47 memcpy(&peer->ipaddr, addr, peer->af_specific->sockaddr_len); in sctp_transport_init()
48 memset(&peer->saddr, 0, sizeof(union sctp_addr)); in sctp_transport_init()
50 peer->sack_generation = 0; in sctp_transport_init()
58 peer->rto = msecs_to_jiffies(net->sctp.rto_initial); in sctp_transport_init()
60 peer->last_time_heard = 0; in sctp_transport_init()
61 peer->last_time_ecne_reduced = jiffies; in sctp_transport_init()
63 peer->param_flags = SPP_HB_DISABLE | in sctp_transport_init()
68 peer->pathmaxrxt = net->sctp.max_retrans_path; in sctp_transport_init()
69 peer->pf_retrans = net->sctp.pf_retrans; in sctp_transport_init()
71 INIT_LIST_HEAD(&peer->transmitted); in sctp_transport_init()
72 INIT_LIST_HEAD(&peer->send_ready); in sctp_transport_init()
73 INIT_LIST_HEAD(&peer->transports); in sctp_transport_init()
75 timer_setup(&peer->T3_rtx_timer, sctp_generate_t3_rtx_event, 0); in sctp_transport_init()
76 timer_setup(&peer->hb_timer, sctp_generate_heartbeat_event, 0); in sctp_transport_init()
77 timer_setup(&peer->reconf_timer, sctp_generate_reconf_event, 0); in sctp_transport_init()
78 timer_setup(&peer->probe_timer, sctp_generate_probe_event, 0); in sctp_transport_init()
79 timer_setup(&peer->proto_unreach_timer, in sctp_transport_init()
83 get_random_bytes(&peer->hb_nonce, sizeof(peer->hb_nonce)); in sctp_transport_init()
85 refcount_set(&peer->refcnt, 1); in sctp_transport_init()
87 return peer; in sctp_transport_init()
474 (!asoc->peer.primary_path || transport == asoc->peer.active_path)) in sctp_transport_route()
813 t->ssthresh = asoc->peer.i.a_rwnd; in sctp_transport_reset()