gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:strlcpy from t2ex/bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c (0.02 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
840:         if (ip) {
841:                 strlcpy(src, inet_ntoa(ip->ip_src), sizeof(src));
842:                 strlcpy(dst, inet_ntoa(ip->ip_dst), sizeof(dst));
843:         }
844:         else {
845:                 strlcpy(src, "(unknown)", sizeof(src));
846:                 strlcpy(dst, "(unknown)", sizeof(dst));
847:         }
864: if (ip6) { 865: strlcpy(src, ip6_sprintf(&ip6->ip6_src), sizeof(src)); 866: strlcpy(dst, ip6_sprintf(&ip6->ip6_dst), sizeof(dst)); 867: } 868: else { 869: strlcpy(src, "(unknown v6)", sizeof(src)); 870: strlcpy(dst, "(unknown v6)", sizeof(dst)); 871: }