Lines Matching defs:inc

1055 		struct in_conninfo inc;
1057 bzero(&inc, sizeof(inc));
1060 inc.inc_flags |= INC_ISIPV6;
1062 inc.inc_flags |= INC_IPV6MINMTU;
1063 inc.inc6_faddr = ip6->ip6_src;
1064 inc.inc6_laddr = ip6->ip6_dst;
1068 inc.inc_faddr = ip->ip_src;
1069 inc.inc_laddr = ip->ip_dst;
1071 inc.inc_fport = th->th_sport;
1072 inc.inc_lport = th->th_dport;
1073 inc.inc_fibnum = so->so_fibnum;
1093 rstreason = syncache_expand(&inc, &to, th, &so, m);
1124 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1175 syncache_chkrst(&inc, th, m);
1182 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1193 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1197 syncache_badack(&inc); /* XXX: Not needed! */
1214 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1270 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1294 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1304 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1312 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1327 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1337 if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1357 if (syncache_add(&inc, &to, th, inp, &so, m, NULL, NULL, iptos))
1525 struct in_conninfo *inc;
1540 inc = &tp->t_inpcb->inp_inc;
1568 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1717 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1724 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1739 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
2342 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
3828 tcp_mssopt(struct in_conninfo *inc)
3835 KASSERT(inc != NULL, ("tcp_mssopt with NULL in_conninfo pointer"));
3838 if (inc->inc_flags & INC_ISIPV6) {
3840 maxmtu = tcp_maxmtu6(inc, NULL);
3850 maxmtu = tcp_maxmtu(inc, NULL);
3855 thcmtu = tcp_hc_getmtu(inc); /* IPv4 and IPv6 */