@@ -35,6 +35,7 @@ OBJS = auth.o \
EncryptedStream.o \
flags.o \
garble.o \
+ libssl.o \
log.o \
main.o \
match.o \
@@ -48,7 +49,6 @@ OBJS = auth.o \
shell.o \
socket.o \
sprintf.o \
- ssl.o \
userent.o \
userrec.o \
users.o
@@ -19,7 +19,7 @@
*/
/*
- * ssl.c -- handles:
+ * libssl.c -- handles:
* libssl handling
*
@@ -31,7 +31,7 @@
#include <bdlib/src/String.h>
#include <bdlib/src/Array.h>
-#include "ssl.h"
+#include "libssl.h"
void *libssl_handle = NULL;
#ifdef EGG_SSL_EXT
@@ -1,5 +1,5 @@
-#ifndef _SSL_H
-#define _SSL_H
+#ifndef _LIBSSL_H
+#define _LIBSSL_H
#include "common.h"
#include "dl.h"
@@ -40,4 +40,4 @@ extern char *tls_rand_file;
#endif
extern int ssl_use;
-#endif /* !_SSL_H */
+#endif /* !_LIBSSL_H */
@@ -12,7 +12,7 @@
#include <setjmp.h>
namespace bd {
class Stream;