aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/vespa/fnet/config.cpp
blob: 99bb8778053d31f07de4eb1a04095255313642ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "config.h"

FNET_Config::FNET_Config()
    : _iocTimeOut(vespalib::duration::zero()),
      _events_before_wakeup(1),
      _maxInputBufferSize(0x10000),
      _maxOutputBufferSize(0x10000),
      _tcpNoDelay(true),
      _drop_empty_buffers(false)
{
}