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