Skip to content

Commit a64cb29

Browse files
eivindj-nordiclemrey
authored andcommitted
lib: nrf_modem rename and move NRF_MODEM_TLS_MAX_MESSAGE_SIZE
Rename NRF_MODEM_TLS_MAX_MESSAGE_SIZE to NRF_SOCKET_TLS_MAX_MESSAGE_SIZE and move to nrf_socket header. Signed-off-by: Eivind Jølsgard <[email protected]>
1 parent e25efb4 commit a64cb29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

applications/serial_lte_modem/src/http_c/slm_at_httpc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ LOG_MODULE_REGISTER(slm_httpc, CONFIG_SLM_LOG_LEVEL);
2222
#define HTTPC_RES_LEN 256
2323
#define HTTPC_HEADERS_LEN 512
2424
#define HTTPC_REQ_LEN (HTTPC_METHOD_LEN + HTTPC_RES_LEN + HTTPC_HEADER_LEN + 3)
25-
#define HTTPC_BUF_LEN 2048 /* align with NRF_MODEM_TLS_MAX_MESSAGE_SIZE */
25+
#define HTTPC_BUF_LEN NRF_SOCKET_TLS_MAX_MESSAGE_SIZE
2626
#if HTTPC_REQ_LEN > HTTPC_BUF_LEN
2727
# error "Please specify larger HTTPC_BUF_LEN"
2828
#endif

0 commit comments

Comments
 (0)