comparison seobeo/s_web.c @ 67:6626ec933933

[Seobeo] Separated out Client Server logic. Created test tools.
author June Park <parkjune1995@gmail.com>
date Wed, 24 Dec 2025 09:15:55 -0800
parents a0f0ad5e42eb
children 75de5903355c
comparison
equal deleted inserted replaced
66:a0f0ad5e42eb 67:6626ec933933
576 printf("Request body %s", p_request_body); 576 printf("Request body %s", p_request_body);
577 Dowa_Arena_Destroy(p_request_arena); 577 Dowa_Arena_Destroy(p_request_arena);
578 Seobeo_Handle_Destroy(h); 578 Seobeo_Handle_Destroy(h);
579 return 0; 579 return 0;
580 } 580 }
581
582 void Seobeo_Web_SSL_Init()
583 {
584 SSL_load_error_strings();
585 OpenSSL_add_ssl_algorithms();
586 }
587
588 void Seobeo_Web_SSL_Cleanup(void)
589 {
590 EVP_cleanup(); // I don't think these are needed...
591 }