Lines Matching refs:inc

1066 		struct in_conninfo inc;
1068 bzero(&inc, sizeof(inc));
1071 inc.inc_flags |= INC_ISIPV6;
1073 inc.inc_flags |= INC_IPV6MINMTU;
1074 inc.inc6_faddr = ip6->ip6_src;
1075 inc.inc6_laddr = ip6->ip6_dst;
1079 inc.inc_faddr = ip->ip_src;
1080 inc.inc_laddr = ip->ip_dst;
1082 inc.inc_fport = th->th_sport;
1083 inc.inc_lport = th->th_dport;
1084 inc.inc_fibnum = so->so_fibnum;
1102 rstreason = syncache_expand(&inc, &to, th, &so, m, port);
1133 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1182 syncache_chkrst(&inc, th, m, port);
1189 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1200 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1204 syncache_badack(&inc, port); /* XXX: Not needed! */
1221 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1276 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1298 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1308 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1316 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1331 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1341 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1361 if (syncache_add(&inc, &to, th, inp, &so, m, NULL, NULL, iptos,
1530 struct in_conninfo *inc;
1546 inc = &tp->t_inpcb->inp_inc;
1566 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1730 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1737 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1752 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
2354 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
3913 tcp_mssopt(struct in_conninfo *inc)
3920 KASSERT(inc != NULL, ("tcp_mssopt with NULL in_conninfo pointer"));
3923 if (inc->inc_flags & INC_ISIPV6) {
3925 maxmtu = tcp_maxmtu6(inc, NULL);
3935 maxmtu = tcp_maxmtu(inc, NULL);
3940 thcmtu = tcp_hc_getmtu(inc); /* IPv4 and IPv6 */