@@ -2780,6 +2780,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2780
2780
}
2781
2781
if (* t == 'i' || * t == 'I' ) {
2782
2782
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" );
2783
2789
}
2784
2790
else {
2785
2791
from_chan = isdigit (* t ) ? atoi (t ) : -999 ;
@@ -2813,6 +2819,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2813
2819
}
2814
2820
if (* t == 'i' || * t == 'I' ) {
2815
2821
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" );
2816
2828
}
2817
2829
else {
2818
2830
to_chan = isdigit (* t ) ? atoi (t ) : -999 ;
@@ -4578,7 +4590,6 @@ void config_init (char *fname, struct audio_s *p_audio_config,
4578
4590
*
4579
4591
* In version 1.2 we allow 0 to disable listening.
4580
4592
*/
4581
- // FIXME: complain if extra parameter e.g. port as in KISSPORT
4582
4593
4583
4594
else if (strcasecmp (t , "AGWPORT" ) == 0 ) {
4584
4595
int n ;
@@ -4598,6 +4609,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
4598
4609
dw_printf ("Line %d: Invalid port number for AGW TCPIP Socket Interface. Using %d.\n" ,
4599
4610
line , p_misc_config -> agwpe_port );
4600
4611
}
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
+ }
4601
4619
}
4602
4620
4603
4621
/*
0 commit comments