diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-03-16 20:28:31 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-04-13 22:29:09 -0700 |
| commit | 9a6c330d3b29eb921704c3b732c275d064ebd4c2 (patch) | |
| tree | f5b905e87416c1d2aea5738a56b3e46896d18c2e /src/supplemental/tls | |
| parent | 5b886b57e79992f1d184ca0309757b01e320c552 (diff) | |
| download | nng-9a6c330d3b29eb921704c3b732c275d064ebd4c2.tar.gz nng-9a6c330d3b29eb921704c3b732c275d064ebd4c2.tar.bz2 nng-9a6c330d3b29eb921704c3b732c275d064ebd4c2.zip | |
Fix typo in NNG_TLS_MAX_RECV_SIZE
Diffstat (limited to 'src/supplemental/tls')
| -rw-r--r-- | src/supplemental/tls/tls_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supplemental/tls/tls_common.c b/src/supplemental/tls/tls_common.c index d68a6197..fca0b420 100644 --- a/src/supplemental/tls/tls_common.c +++ b/src/supplemental/tls/tls_common.c @@ -27,7 +27,7 @@ // NNG_TLS_MAX_RECV_SIZE limits the amount of data we will receive in a single // operation. As we have to buffer data, this drives the size of our // intermediary buffer. The 16K is aligned to the maximum TLS record size. -#ifndef NNG_TLX_MAX_RECV_SIZE +#ifndef NNG_TLS_MAX_RECV_SIZE #define NNG_TLS_MAX_RECV_SIZE 16384 #endif |
