We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00a7649 commit 73c5ae5Copy full SHA for 73c5ae5
src/BearSSLClient.h
@@ -25,6 +25,10 @@
25
#ifndef _BEAR_SSL_CLIENT_H_
26
#define _BEAR_SSL_CLIENT_H_
27
28
+#ifndef BEAR_SSL_CLIENT_IOBUF_SIZE
29
+#define BEAR_SSL_CLIENT_IOBUF_SIZE 8192 + 85 + 325
30
+#endif
31
+
32
#include <Arduino.h>
33
#include <Client.h>
34
@@ -68,7 +72,7 @@ class BearSSLClient : public Client {
68
72
69
73
br_ssl_client_context _sc;
70
74
br_x509_minimal_context _xc;
71
- unsigned char _iobuf[8192 + 85 + 325];
75
+ unsigned char _iobuf[BEAR_SSL_CLIENT_IOBUF_SIZE];
76
br_sslio_context _ioc;
77
};
78
0 commit comments