close Warning: Can't synchronize with repository "(default)" ("(default)" is not readable or not a Git repository.). Look in the Trac log for more information.

Changes between Version 1 and Version 2 of Proto/cModules/c0HostProtocolStack/c0Configuration


Ignore:
Timestamp:
Sep 8, 2015, 8:02:02 PM (9 years ago)
Author:
kais
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Proto/cModules/c0HostProtocolStack/c0Configuration

    v1 v2  
    6666# CSYN_TO=800000
    6767CSYN_TO=800000
     68
     69# whether to use a transport protocol with end-to-end reliability semantics.
     70TRANS_RELIABLE=true
     71
     72# The variable settings below are considered only if TRANS_RELIABLE is set to true
     73# Transport layer message with a chunk count equal to or greater than this threshold will be sent with NACK-based end-to-end error recovery.
     74TRANS_CHK_COUNT_NACK_THRESH=3
     75
     76# NACK Timeout value at sender. If the sender is sending a message of N chunks, after N * TRANS_SEND_NACK_TIMEOUT milliseconds, the chunks will be destroyed, and memory is garbage collected.
     77TRANS_SEND_NACK_TIMEOUT=2000
     78
     79# NACK Timeout value at the receiver. If the error recovery mechanism is NACK and the message is not complete before N * TRANS_RECV_NACK_TIMEOUT, for a message of N chunks, the receiver will transmit a NACK message to the sender. Setting this value more conservatively to favor network-based recovery for handling disconnection.
     80TRANS_RECV_NACK_TIMEOUT=20000
    6881}}}