123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef WOLFSSL_ASYNC_TLS_EXAMPLES_H
- #define WOLFSSL_ASYNC_TLS_EXAMPLES_H
- #define DEFAULT_PORT 11111
- #define TEST_BUF_SZ 256
- #ifdef WOLF_CRYPTO_CB
- typedef struct {
- int pendingCount;
- } AsyncTlsCryptoCbCtx;
- int AsyncTlsCryptoCb(int devIdArg, wc_CryptoInfo* info, void* ctx);
- #endif
- int client_async_test(int argc, char** argv);
- int server_async_test(int argc, char** argv);
- #endif
|