tls: Rename ssl.c to tls.c
This commit is contained in:
parent
6fab86fd4c
commit
b10084b45d
|
|
@ -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:
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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[] = {
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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 */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue