I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit c3af9968 authored by zzz's avatar zzz
Browse files

log tweak

parent e1d9e05b
No related branches found
No related tags found
No related merge requests found
......@@ -138,6 +138,7 @@ class PacketBuilder {
/** IPv4 only */
public static final int IP_HEADER_SIZE = 20;
/** Same for IPv4 and IPv6 */
public static final int UDP_HEADER_SIZE = 8;
/** 74 */
......@@ -541,10 +542,10 @@ class PacketBuilder {
" data size " + dataSize +
" pkt size " + (off + (ipHeaderSize + UDP_HEADER_SIZE)) +
" MTU " + currentMTU +
' ' + availableForAcks + " for all acks " +
availableForExplicitAcks + " for full acks " +
explicitToSend + " full acks included " +
partialAcksToSend + " partial acks included " +
' ' + availableForAcks + " for all acks, " +
availableForExplicitAcks + " for full acks, " +
explicitToSend + " full acks included, " +
partialAcksToSend + " partial acks included, " +
" Fragments: " + DataHelper.toString(fragments), new Exception());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment