We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
一、操作步骤: 1、启用udp多份复制; 2、出现内存泄露; 二、版本 tcpcopy-0.8.0版本 三、问题代码 tc_packets_module.c/L291 if (replica_num > 1) { packet_valid = process_packet(true, packet, recv_len); replicate_packs(packet, recv_len, replica_num); } else { packet_valid = process_packet(false, packet, recv_len); } 四、正确修复后的代码 if (replica_num > 1) { replicate_packs(packet, recv_len, replica_num); } packet_valid = process_packet(false, packet, recv_len);
Original issue reported on code.google.com by [email protected] on 21 Aug 2013 at 3:23
[email protected]
Attachments:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original issue reported on code.google.com by
[email protected]
on 21 Aug 2013 at 3:23Attachments:
The text was updated successfully, but these errors were encountered: