Lines Matching refs:inc

1027 		struct in_conninfo inc;
1033 bzero(&inc, sizeof(inc));
1036 inc.inc_flags |= INC_ISIPV6;
1037 inc.inc6_faddr = ip6->ip6_src;
1038 inc.inc6_laddr = ip6->ip6_dst;
1042 inc.inc_faddr = ip->ip_src;
1043 inc.inc_laddr = ip->ip_dst;
1045 inc.inc_fport = th->th_sport;
1046 inc.inc_lport = th->th_dport;
1047 inc.inc_fibnum = so->so_fibnum;
1065 if (!syncache_expand(&inc, &to, th, &so, m)) {
1086 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1151 syncache_chkrst(&inc, th);
1158 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1169 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1173 syncache_badack(&inc); /* XXX: Not needed! */
1190 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1246 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1270 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1280 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1288 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1303 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1313 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1332 syncache_add(&inc, &to, th, inp, &so, m, NULL, NULL);
1439 struct in_conninfo *inc;
1453 inc = &tp->t_inpcb->inp_inc;
1547 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1554 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
2233 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
3635 tcp_mssopt(struct in_conninfo *inc)
3642 KASSERT(inc != NULL, ("tcp_mssopt with NULL in_conninfo pointer"));
3645 if (inc->inc_flags & INC_ISIPV6) {
3647 maxmtu = tcp_maxmtu6(inc, NULL);
3657 maxmtu = tcp_maxmtu(inc, NULL);
3662 thcmtu = tcp_hc_getmtu(inc); /* IPv4 and IPv6 */