diff --git a/src/Makefile.in b/src/Makefile.in index 402f8df..179ea3f 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -167,7 +167,7 @@ OBJS = aprsc.o accept.o worker.o errno_aprsc.o \ keyhash.o \ filter.o cellmalloc.o historydb.o \ counterdata.o status.o cJSON.o \ - http.o ssl.o sctp.o version.o \ + http.o tls.o sctp.o version.o \ @LIBOBJS@ clean: diff --git a/src/accept.c b/src/accept.c index f22fed0..c2085ec 100644 --- a/src/accept.c +++ b/src/accept.c @@ -44,7 +44,7 @@ #include "clientlist.h" #include "client_heard.h" #include "keyhash.h" -#include "ssl.h" +#include "tls.h" #include "sctp.h" #ifdef USE_SCTP diff --git a/src/aprsc.c b/src/aprsc.c index 4ef3d1c..2fa594f 100644 --- a/src/aprsc.c +++ b/src/aprsc.c @@ -37,7 +37,7 @@ #include "hmalloc.h" #include "hlog.h" #include "config.h" -#include "ssl.h" +#include "tls.h" #include "accept.h" #include "uplink.h" #include "worker.h" diff --git a/src/config.c b/src/config.c index d2f7ea0..f5e7a06 100644 --- a/src/config.c +++ b/src/config.c @@ -32,7 +32,7 @@ #include "worker.h" #include "filter.h" #include "parse_qc.h" -#include "ssl.h" +#include "tls.h" char def_cfgfile[] = "aprsc.conf"; char def_webdir[] = "web"; diff --git a/src/config.h b/src/config.h index 5c9b2e1..f0e4d4a 100644 --- a/src/config.h +++ b/src/config.h @@ -24,7 +24,7 @@ #include "ac-hdrs.h" #include "acl.h" -#include "ssl.h" +#include "tls.h" #ifndef AI_PASSIVE #include "netdb6.h" diff --git a/src/login.c b/src/login.c index 298c85c..a7fc016 100644 --- a/src/login.c +++ b/src/login.c @@ -23,7 +23,7 @@ #include "filter.h" #include "clientlist.h" #include "parse_qc.h" -#include "ssl.h" +#include "tls.h" /* a static list of usernames which are not allowed to log in */ static const char *disallow_login_usernames[] = { diff --git a/src/ssl.c b/src/tls.c similarity index 99% rename from src/ssl.c rename to src/tls.c index c74be8d..c80afa4 100644 --- a/src/ssl.c +++ b/src/tls.c @@ -64,7 +64,7 @@ */ #include "config.h" -#include "ssl.h" +#include "tls.h" #include "hlog.h" #include "hmalloc.h" #include "worker.h" diff --git a/src/ssl.h b/src/tls.h similarity index 100% rename from src/ssl.h rename to src/tls.h diff --git a/src/uplink.c b/src/uplink.c index c00edfc..f45008d 100644 --- a/src/uplink.c +++ b/src/uplink.c @@ -43,7 +43,7 @@ #include "incoming.h" #include "outgoing.h" #include "filter.h" -#include "ssl.h" +#include "tls.h" int uplink_reconfiguring; int uplink_shutting_down; diff --git a/src/version.c b/src/version.c index be32790..ee7619d 100644 --- a/src/version.c +++ b/src/version.c @@ -4,7 +4,7 @@ #include "version_branch.h" #include "config.h" #include "xpoll.h" -#include "ssl.h" +#include "tls.h" const char version_build[] = VERSION "-" SRCVERSION VERSION_BRANCH; const char verstr[] = PROGNAME " " VERSION "-" SRCVERSION VERSION_BRANCH; diff --git a/src/worker.h b/src/worker.h index 7729306..2f2f3ed 100644 --- a/src/worker.h +++ b/src/worker.h @@ -30,7 +30,7 @@ #include "rwlock.h" #include "cJSON.h" #include "errno_aprsc.h" -#include "ssl.h" +#include "tls.h" extern time_t now; /* current wallclock time */ extern time_t tick; /* clocktick - monotonously increasing for timers, not affected by NTP et al */