forked from wolfSSL/wolfssl
Fixes for whitespace, script bug and bit-field type.
This commit is contained in:
@ -65,6 +65,7 @@ if [ "$1" == "hrr" ]; then
|
|||||||
# TLS v1.3 Hello Retry Request
|
# TLS v1.3 Hello Retry Request
|
||||||
./examples/server/server -v 4 -i -x -g &
|
./examples/server/server -v 4 -i -x -g &
|
||||||
sleep 0.1
|
sleep 0.1
|
||||||
|
fi
|
||||||
|
|
||||||
# Run this script from the wolfSSL root
|
# Run this script from the wolfSSL root
|
||||||
if [ ! -f wolfssl/ssl.h ]; then
|
if [ ! -f wolfssl/ssl.h ]; then
|
||||||
|
@ -2229,8 +2229,8 @@ typedef struct {
|
|||||||
#endif
|
#endif
|
||||||
} pub;
|
} pub;
|
||||||
#endif
|
#endif
|
||||||
int initPriv:1;
|
byte initPriv:1;
|
||||||
int initPub:1;
|
byte initPub:1;
|
||||||
} SnifferKey;
|
} SnifferKey;
|
||||||
|
|
||||||
typedef struct SetupKeysArgs {
|
typedef struct SetupKeysArgs {
|
||||||
|
@ -735,7 +735,7 @@ int main(int argc, char** argv)
|
|||||||
WOLF_EVENT* events[1]; /* poll for single event */
|
WOLF_EVENT* events[1]; /* poll for single event */
|
||||||
int eventCount = 0;
|
int eventCount = 0;
|
||||||
|
|
||||||
/* For async call the original API again with same data,
|
/* For async call the original API again with same data,
|
||||||
* or call with different sessions for multiple concurrent
|
* or call with different sessions for multiple concurrent
|
||||||
* stream processing */
|
* stream processing */
|
||||||
ret = ssl_DecodePacketAsync(chain, chainSz, isChain, &data, err,
|
ret = ssl_DecodePacketAsync(chain, chainSz, isChain, &data, err,
|
||||||
|
@ -124,12 +124,12 @@ SSL_SNIFFER_API int ssl_GetSessionStats(unsigned int* active,
|
|||||||
unsigned int* reassemblyMemory,
|
unsigned int* reassemblyMemory,
|
||||||
char* error);
|
char* error);
|
||||||
|
|
||||||
WOLFSSL_API
|
WOLFSSL_API
|
||||||
SSL_SNIFFER_API void ssl_InitSniffer(void);
|
SSL_SNIFFER_API void ssl_InitSniffer(void);
|
||||||
WOLFSSL_API
|
WOLFSSL_API
|
||||||
SSL_SNIFFER_API void ssl_InitSniffer_ex(int devId);
|
SSL_SNIFFER_API void ssl_InitSniffer_ex(int devId);
|
||||||
|
|
||||||
WOLFSSL_API
|
WOLFSSL_API
|
||||||
SSL_SNIFFER_API void ssl_FreeSniffer(void);
|
SSL_SNIFFER_API void ssl_FreeSniffer(void);
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user