1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

added aborts to malloc and other system calls

git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@62 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
cameronrich
2007-02-17 00:42:57 +00:00
parent 00fe6bca27
commit 61fd249441
34 changed files with 381 additions and 183 deletions

View File

@ -87,7 +87,7 @@ static void do_server(int argc, char *argv[])
uint16_t port = 4433;
uint32_t options = SSL_DISPLAY_CERTS;
int client_fd;
SSLCTX *ssl_ctx;
SSL_CTX *ssl_ctx;
int server_fd, client_len, res = 0;
#ifndef CONFIG_SSL_SKELETON_MODE
char *private_key_file = NULL;
@ -416,7 +416,7 @@ static void do_client(int argc, char *argv[])
struct hostent *hostent;
int reconnect = 0;
uint32_t sin_addr;
SSLCTX *ssl_ctx;
SSL_CTX *ssl_ctx;
SSL *ssl = NULL;
int quiet = 0;
int cert_index = 0, ca_cert_index = 0;