|
|
|
|
@ -91,7 +91,7 @@ struct ETCP_CONN* etcp_connection_create(struct UTUN_INSTANCE* instance, char* n
|
|
|
|
|
etcp->input_send_q = queue_new(instance->ua, INFLIGHT_INITIAL_HASH_SIZE, "input_send_q"); // Hash for send_q
|
|
|
|
|
etcp->input_wait_ack = queue_new(instance->ua, INFLIGHT_INITIAL_HASH_SIZE, "input_wait_ack"); // Hash for wait_ack
|
|
|
|
|
etcp->recv_q = queue_new(instance->ua, INFLIGHT_INITIAL_HASH_SIZE, "recv_q"); // Hash for send_q
|
|
|
|
|
etcp->ack_q = queue_new(instance->ua, 0, "ack_q"); |
|
|
|
|
etcp->ack_q = queue_new(instance->ua, INFLIGHT_INITIAL_HASH_SIZE, "ack_q"); |
|
|
|
|
etcp->inflight_pool = memory_pool_init(sizeof(struct INFLIGHT_PACKET)); |
|
|
|
|
etcp->io_pool = memory_pool_init(sizeof(struct ETCP_FRAGMENT)); |
|
|
|
|
etcp->optimal_inflight=10000; |
|
|
|
|
|