1
0
mirror of https://code.semirocket.science/wrapsix synced 2024-09-19 23:11:04 +03:00

Fixed usage of uninitialized variable in TCP code

This commit is contained in:
Michal Zima 2013-02-14 14:28:57 +01:00
parent 5af1a5ca7c
commit f7a03e8240

View File

@ -366,7 +366,7 @@ int tcp_ipv4(struct s_ethernet *eth4, struct s_ipv4 *ip4, char *payload,
ip6->hop_limit = ip4->ttl; ip6->hop_limit = ip4->ttl;
ip6->next_header = IPPROTO_FRAGMENT; ip6->next_header = IPPROTO_FRAGMENT;
ipv4_to_ipv6(&ip4->ip_src, &ip6->ip_src); ipv4_to_ipv6(&ip4->ip_src, &ip6->ip_src);
ip6->ip_dest = connection->ipv6; ip6->ip_dest = frag_conn->connection->ipv6;
/* build IPv6 fragment header */ /* build IPv6 fragment header */
frag->next_header = IPPROTO_TCP; frag->next_header = IPPROTO_TCP;