aboutsummaryrefslogtreecommitdiffstats
path: root/fnet
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@oath.com>2018-09-03 13:09:18 +0000
committerHåvard Pettersen <havardpe@oath.com>2018-09-03 13:09:18 +0000
commit5f4033fccbed3ca6b9b73459cc14ee33c86ebf97 (patch)
tree51233b8fadf51b68f1cb4150cba6e54d0acaff9e /fnet
parent7ee8a275f147330bb5540eeffc60d7005f71581a (diff)
remove unused config values
Diffstat (limited to 'fnet')
-rw-r--r--fnet/src/vespa/fnet/config.cpp4
-rw-r--r--fnet/src/vespa/fnet/config.h2
2 files changed, 1 insertions, 5 deletions
diff --git a/fnet/src/vespa/fnet/config.cpp b/fnet/src/vespa/fnet/config.cpp
index feed7f2d241..7430de33bb1 100644
--- a/fnet/src/vespa/fnet/config.cpp
+++ b/fnet/src/vespa/fnet/config.cpp
@@ -3,9 +3,7 @@
#include "config.h"
FNET_Config::FNET_Config()
- : _minEventTimeOut(0),
- _pingInterval(0),
- _iocTimeOut(0),
+ : _iocTimeOut(0),
_maxInputBufferSize(0x10000),
_maxOutputBufferSize(0x10000),
_tcpNoDelay(true),
diff --git a/fnet/src/vespa/fnet/config.h b/fnet/src/vespa/fnet/config.h
index e94cf0f6105..ffaab6714ae 100644
--- a/fnet/src/vespa/fnet/config.h
+++ b/fnet/src/vespa/fnet/config.h
@@ -11,8 +11,6 @@
class FNET_Config
{
public:
- uint32_t _minEventTimeOut;
- uint32_t _pingInterval;
uint32_t _iocTimeOut;
uint32_t _maxInputBufferSize;
uint32_t _maxOutputBufferSize;