Move RADIUS related code to #ifndef NORADIUS

This commit is contained in:
z3APA3A 2017-12-22 18:53:50 +03:00
parent 9ac7503c4e
commit 2d1720c15f
2 changed files with 6 additions and 1 deletions

View File

@ -327,9 +327,11 @@ static int h_log(int argc, unsigned char ** argv){
conf.logfunc = logsql;
}
#endif
#ifndef NORADIUS
else if(!strcmp(argv[1],"radius")){
conf.logfunc = logradius;
}
#endif
else {
FILE *fp;
if(argc > 2) {
@ -1274,6 +1276,7 @@ static int h_delimchar(int argc, unsigned char **argv){
}
#ifndef NORADIUS
static int h_radius(int argc, unsigned char **argv){
unsigned short port;
@ -1309,7 +1312,7 @@ static int h_radius(int argc, unsigned char **argv){
}
return 0;
}
#endif
static int h_authcache(int argc, unsigned char **argv){
conf.authcachetype = 0;
if(strstr((char *) *(argv + 1), "ip")) conf.authcachetype |= 1;

View File

@ -520,7 +520,9 @@ static void * ef_server_childcount(struct node * node){
static void * ef_server_log(struct node * node){
if(((struct srvparam *)node->value) -> logfunc == lognone) return "none";
#ifndef NORADIUS
else if(((struct srvparam *)node->value) -> logfunc == logradius) return "radius";
#endif
else if(((struct srvparam *)node->value) -> logfunc == logstdout)
return (((struct srvparam *)node->value) -> logtarget)?"file":"stdout";
#ifndef _WIN32