tls: Rename ssl.c to tls.c

This commit is contained in:
Heikki Hannikainen 2022-10-25 01:29:21 +03:00
parent 6fab86fd4c
commit b10084b45d
11 changed files with 10 additions and 10 deletions

View File

@ -167,7 +167,7 @@ OBJS = aprsc.o accept.o worker.o errno_aprsc.o \
keyhash.o \ keyhash.o \
filter.o cellmalloc.o historydb.o \ filter.o cellmalloc.o historydb.o \
counterdata.o status.o cJSON.o \ counterdata.o status.o cJSON.o \
http.o ssl.o sctp.o version.o \ http.o tls.o sctp.o version.o \
@LIBOBJS@ @LIBOBJS@
clean: clean:

View File

@ -44,7 +44,7 @@
#include "clientlist.h" #include "clientlist.h"
#include "client_heard.h" #include "client_heard.h"
#include "keyhash.h" #include "keyhash.h"
#include "ssl.h" #include "tls.h"
#include "sctp.h" #include "sctp.h"
#ifdef USE_SCTP #ifdef USE_SCTP

View File

@ -37,7 +37,7 @@
#include "hmalloc.h" #include "hmalloc.h"
#include "hlog.h" #include "hlog.h"
#include "config.h" #include "config.h"
#include "ssl.h" #include "tls.h"
#include "accept.h" #include "accept.h"
#include "uplink.h" #include "uplink.h"
#include "worker.h" #include "worker.h"

View File

@ -32,7 +32,7 @@
#include "worker.h" #include "worker.h"
#include "filter.h" #include "filter.h"
#include "parse_qc.h" #include "parse_qc.h"
#include "ssl.h" #include "tls.h"
char def_cfgfile[] = "aprsc.conf"; char def_cfgfile[] = "aprsc.conf";
char def_webdir[] = "web"; char def_webdir[] = "web";

View File

@ -24,7 +24,7 @@
#include "ac-hdrs.h" #include "ac-hdrs.h"
#include "acl.h" #include "acl.h"
#include "ssl.h" #include "tls.h"
#ifndef AI_PASSIVE #ifndef AI_PASSIVE
#include "netdb6.h" #include "netdb6.h"

View File

@ -23,7 +23,7 @@
#include "filter.h" #include "filter.h"
#include "clientlist.h" #include "clientlist.h"
#include "parse_qc.h" #include "parse_qc.h"
#include "ssl.h" #include "tls.h"
/* a static list of usernames which are not allowed to log in */ /* a static list of usernames which are not allowed to log in */
static const char *disallow_login_usernames[] = { static const char *disallow_login_usernames[] = {

View File

@ -64,7 +64,7 @@
*/ */
#include "config.h" #include "config.h"
#include "ssl.h" #include "tls.h"
#include "hlog.h" #include "hlog.h"
#include "hmalloc.h" #include "hmalloc.h"
#include "worker.h" #include "worker.h"

View File

@ -43,7 +43,7 @@
#include "incoming.h" #include "incoming.h"
#include "outgoing.h" #include "outgoing.h"
#include "filter.h" #include "filter.h"
#include "ssl.h" #include "tls.h"
int uplink_reconfiguring; int uplink_reconfiguring;
int uplink_shutting_down; int uplink_shutting_down;

View File

@ -4,7 +4,7 @@
#include "version_branch.h" #include "version_branch.h"
#include "config.h" #include "config.h"
#include "xpoll.h" #include "xpoll.h"
#include "ssl.h" #include "tls.h"
const char version_build[] = VERSION "-" SRCVERSION VERSION_BRANCH; const char version_build[] = VERSION "-" SRCVERSION VERSION_BRANCH;
const char verstr[] = PROGNAME " " VERSION "-" SRCVERSION VERSION_BRANCH; const char verstr[] = PROGNAME " " VERSION "-" SRCVERSION VERSION_BRANCH;

View File

@ -30,7 +30,7 @@
#include "rwlock.h" #include "rwlock.h"
#include "cJSON.h" #include "cJSON.h"
#include "errno_aprsc.h" #include "errno_aprsc.h"
#include "ssl.h" #include "tls.h"
extern time_t now; /* current wallclock time */ extern time_t now; /* current wallclock time */
extern time_t tick; /* clocktick - monotonously increasing for timers, not affected by NTP et al */ extern time_t tick; /* clocktick - monotonously increasing for timers, not affected by NTP et al */