summaryrefslogtreecommitdiffstats
path: root/fnet
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-05-02 07:52:39 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2019-05-02 07:52:39 +0200
commit6001a3eb5cf74d7b661123a225233417da15515f (patch)
tree0f84fe80e485b8ff43f3c273fa68a622caf0bd2d /fnet
parentb3c22361baac22c64df66f6574ea99d21dcdd652 (diff)
16k -> 32k buffers
Diffstat (limited to 'fnet')
-rw-r--r--fnet/src/vespa/fnet/connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fnet/src/vespa/fnet/connection.h b/fnet/src/vespa/fnet/connection.h
index b4272b91cef..760b1b96d4d 100644
--- a/fnet/src/vespa/fnet/connection.h
+++ b/fnet/src/vespa/fnet/connection.h
@@ -58,9 +58,9 @@ public:
};
enum {
- FNET_READ_SIZE = 16384,
+ FNET_READ_SIZE = 32768,
FNET_READ_REDO = 10,
- FNET_WRITE_SIZE = 16384,
+ FNET_WRITE_SIZE = 32768,
FNET_WRITE_REDO = 10
};