Skip to content

Commit 019ff3b

Browse files
committed
Update config.c
1 parent 11468f2 commit 019ff3b

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

src/config.c

+19-1
Original file line numberDiff line numberDiff line change
@@ -2780,6 +2780,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
27802780
}
27812781
if (*t == 'i' || *t == 'I') {
27822782
from_chan = MAX_CHANS;
2783+
text_color_set(DW_COLOR_ERROR);
2784+
dw_printf ("Config file: FILTER IG ... on line %d.\n", line);
2785+
dw_printf ("Warning! Don't mess with IS>RF filtering unless you are an expert and have an unusual situation.\n");
2786+
dw_printf ("Warning! The default is fine for nearly all situations.\n");
2787+
dw_printf ("Warning! Be sure to read carefully and understand Successful-APRS-Gateway-Operation.pdf .\n");
2788+
dw_printf ("Warning! If you insist, be sure to add \" | i/180 \" so you don't break messaging.\n");
27832789
}
27842790
else {
27852791
from_chan = isdigit(*t) ? atoi(t) : -999;
@@ -2813,6 +2819,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
28132819
}
28142820
if (*t == 'i' || *t == 'I') {
28152821
to_chan = MAX_CHANS;
2822+
text_color_set(DW_COLOR_ERROR);
2823+
dw_printf ("Config file: FILTER ... IG ... on line %d.\n", line);
2824+
dw_printf ("Warning! Don't mess with RF>IS filtering unless you are an expert and have an unusual situation.\n");
2825+
dw_printf ("Warning! Expected behavior is for everything to go from RF to IS.\n");
2826+
dw_printf ("Warning! The default is fine for nearly all situations.\n");
2827+
dw_printf ("Warning! Be sure to read carefully and understand Successful-APRS-Gateway-Operation.pdf .\n");
28162828
}
28172829
else {
28182830
to_chan = isdigit(*t) ? atoi(t) : -999;
@@ -4578,7 +4590,6 @@ void config_init (char *fname, struct audio_s *p_audio_config,
45784590
*
45794591
* In version 1.2 we allow 0 to disable listening.
45804592
*/
4581-
// FIXME: complain if extra parameter e.g. port as in KISSPORT
45824593

45834594
else if (strcasecmp(t, "AGWPORT") == 0) {
45844595
int n;
@@ -4598,6 +4609,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
45984609
dw_printf ("Line %d: Invalid port number for AGW TCPIP Socket Interface. Using %d.\n",
45994610
line, p_misc_config->agwpe_port);
46004611
}
4612+
t = split(NULL,0);
4613+
if (t != NULL) {
4614+
text_color_set(DW_COLOR_ERROR);
4615+
dw_printf ("Line %d: Unexpected \"%s\" is ignored.\n", line, t);
4616+
dw_printf ("Perhaps you were trying to use feature available only with KISSPORT.\n");
4617+
continue;
4618+
}
46014619
}
46024620

46034621
/*

0 commit comments

Comments
 (0)