This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +1090
-12
lines changed Expand file tree Collapse file tree 4 files changed +1090
-12
lines changed Original file line number Diff line number Diff line change 18
18
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19
19
*/
20
20
21
+ #pragma once
22
+
21
23
#include " Client.h"
22
24
#include " SSLClient/SSLSession.h"
23
25
#include " SSLClient/SSLClientParameters.h"
24
26
#include < vector>
25
27
26
- #ifndef SSLClient_H_
27
- #define SSLClient_H_
28
-
29
28
/* *
30
29
@brief The main SSLClient class.
31
30
Check out README.md for more info.
@@ -500,7 +499,11 @@ class EthernetSSLClient : public Client
500
499
As a rule of thumb EthernetSSLClient will fail if it does not have at least 8000 bytes when starting a
501
500
connection.
502
501
*/
502
+ // KH test increase
503
503
unsigned char m_iobuf[2048 ];
504
+ // unsigned char m_iobuf[4096];
505
+ // ////
506
+
504
507
// store the index of where we are writing in the buffer
505
508
// so we can send our records all at once to prevent
506
509
// weird timing issues
@@ -509,4 +512,4 @@ class EthernetSSLClient : public Client
509
512
unsigned m_br_last_state;
510
513
};
511
514
512
- #endif /* * SSLClient_H_ */
515
+ #include " SSLClient/SSLClient_Impl.h "
Original file line number Diff line number Diff line change 25
25
for reuse later.
26
26
*/
27
27
28
+ #pragma once
29
+
28
30
#include " SSLClient/bearssl.h"
29
31
#undef min
30
32
#undef max
31
33
#include < vector>
32
34
33
- #ifndef SSLClientParameters_H_
34
- #define SSLClientParameters_H_
35
-
36
35
/* *
37
36
@brief This class stores data required for SSLClient to use mutual authentication.
38
37
@@ -145,4 +144,3 @@ class SSLClientParameters
145
144
const br_skey_decoder_context m_key_struct;
146
145
};
147
146
148
- #endif
You can’t perform that action at this time.
0 commit comments