This defines the default size for data blocks transferred over the network. It
should be large enough to guarantee filling up the TCP window (for efficiency),
while still preventing sending much data while the peer has already rejected
the rest of the transfer.
#ifndef IO_BLOCK_SIZE
# define IO_BLOCK_SIZE 8192
#endif
+/* Default size for data blocks transferred over the network */
+#ifndef NET_BLOCK_SIZE
+# define NET_BLOCK_SIZE (128*1024)
+#endif
#if !defined(PIPE_BUF) && defined(_POSIX_PIPE_BUF)
# define PIPE_BUF (8 * _POSIX_PIPE_BUF) /* for HURD */