mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
05cbd58da5
probs should be core, but I dunno.
12 lines
257 B
C
12 lines
257 B
C
#include <openssl/ssl.h>
|
|
#include <libwebsockets.h>
|
|
|
|
int main() {
|
|
struct lws_context_creation_info info;
|
|
memset(&info, 0, sizeof(info));
|
|
struct lws_context *context;
|
|
context = lws_create_context(&info);
|
|
lws_context_destroy(context);
|
|
return 0;
|
|
}
|