#include <stdio.h>#include <memory.h>#include <errno.h>#include <sys/types.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>#include <netdb.h>#include <openssl/crypto.h>#include <openssl/x509.h>#include <openssl/pem.h>#include <openssl/ssl.h>#include <openssl/err.h>Go to the source code of this file.
Macros | |
| #define | CHK_NULL(x) if ((x)==NULL) exit (1) |
| #define | CHK_ERR(err, s) if ((err)==-1) { perror(s); exit(1); } |
| #define | CHK_SSL(err) if ((err)==-1) { ERR_print_errors_fp(stderr); exit(2); } |
Functions | |
| void | main () |
| #define CHK_SSL | ( | err | ) | if ((err)==-1) { ERR_print_errors_fp(stderr); exit(2); } |
1.8.2