Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
also cause thread related issues.
|
|
send_lossy_cryptpacket() can get called from another thread meaning
the connection can be killed while the packet is sending.
|
|
|
|
Make each connection stick to the same relay.
|
|
|
|
older kernels.
|
|
|
|
|
|
after disconnecting due to them getting stuck in a connection loop.
|
|
Removed now useless defines in network.h
|
|
ethernet devices.
Added some code to get real adapter broadcast addresses on windows.
|
|
Removed useless semicolons.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Packet was being copied with a wrong, smaller length.
|
|
Don't increment nonce if packet was discarded instead of being sent.
|
|
|
|
|
|
|
|
|
|
Instead of dropping the rate to minimum just half it until it drops
to the minimum.
|
|
|
|
|
|
|
|
|
|
TCP ping requests in TCP_client should have a higher success rate.
|
|
|
|
|
|
When a TCP ping request is recieved, try to send the response until
success instead of just dropping it if sending the response fails on
the first try.
|
|
|
|
|
|
|
|
Change calloc call on line 138 from empty_array->entries = calloc(size * sizeof(Ping_Array_Entry), 1);, to empty_array->entries = calloc(size, sizeof(Ping_Array_Entry));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|