diff options
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/or.h b/src/or/or.h index f97302152e..03b2d97e77 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1749,8 +1749,8 @@ typedef struct exit_redirect_t { } exit_redirect_t; /* limits for TCP send and recv buffer size used for constrained sockets */ -#define MIN_TCPSOCK_BUFFER 2048 -#define MAX_TCPSOCK_BUFFER 262144 /* 256k */ +#define MIN_CONSTRAINED_TCP_BUFFER 2048 +#define MAX_CONSTRAINED_TCP_BUFFER 262144 /* 256k */ /** A linked list of lines in a config file. */ typedef struct config_line_t { @@ -1894,7 +1894,7 @@ typedef struct { config_line_t *ReachableDirAddresses; /**< IP:ports for Dir conns. */ int ConstrainedSockets; /**< Shrink xmit and recv socket buffers. */ - int ConstrainedSockSize; /**< Size of constrained buffers. */ + uint64_t ConstrainedSockSize; /**< Size of constrained buffers. */ /** Application ports that require all nodes in circ to have sufficient * uptime. */ |