24 lines
334 B
C
24 lines
334 B
C
#include <stdlib.h>
|
|
|
|
#include "networking.h"
|
|
#include "pkce.h"
|
|
#include "log.h"
|
|
#include "server.h"
|
|
#include "ssl.h"
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
int main(int argc, const char* argv[]) {
|
|
|
|
/*SSL_CTX* ctx = SSL_CTX_new(TLS_server_method());
|
|
ssl_use_ppcerts(ctx);*/
|
|
|
|
// tcp_get(argv[1]);
|
|
|
|
//do_pkce();
|
|
|
|
server_start();
|
|
|
|
return 0;
|
|
}
|