My Project
Loading...
Searching...
No Matches
wolf_demo.h
1
2
3typedef struct func_args
4{
5 int argc;
6 char **argv;
7 int return_code;
8} func_args;
9
10void wolfSSL_init(void) ;
11void wolfSSL_main(void) ;
12WOLFSSL_CTX *wolfSSL_TLS_server_init(void);
13WOLFSSL_CTX *wolfSSL_TLS_client_init(void);
14
15void benchmark_test(void *args);
16void wolfcrypt_test(void *args);
17void wolfSSL_TLS_client(void *ctx, func_args *args);
18void wolfSSL_TLS_server(void *ctx, func_args *args);
Definition internal.h:2595