Skip to content

Commit 6b76e1d

Browse files
committed
Don't let t1v get out of control.
1 parent 6bd296b commit 6b76e1d

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

src/ax25_link.c

+25-3
Original file line numberDiff line numberDiff line change
@@ -194,14 +194,16 @@
194194
// Debug switches for different types of information.
195195
// Should have command line options instead of changing source and recompiling.
196196

197-
static int s_debug_protocol_errors = 1; // Less serious Protocol errors.
197+
static int s_debug_protocol_errors = 0; // Less serious Protocol errors.
198198
// Useful for debugging but unnecessarily alarming other times.
199+
// Was it intentially left on for release 1.6?
199200

200201
static int s_debug_client_app = 0; // Interaction with client application.
201202
// dl_connect_request, dl_data_request, dl_data_indication, etc.
202203

203204
static int s_debug_radio = 0; // Received frames and channel busy status.
204205
// lm_data_indication, lm_channel_busy
206+
205207
static int s_debug_variables = 0; // Variables, state changes.
206208

207209
static int s_debug_retry = 0; // Related to lost I frames, REJ, SREJ, timeout, resending.
@@ -594,6 +596,8 @@ static int AX25MODULO(int n, int m, const char *file, const char *func, int line
594596
#define PAUSE_TM201 pause_tm201(S, __func__, __LINE__)
595597
#define RESUME_TM201 resume_tm201(S, __func__, __LINE__)
596598

599+
// TODO: add SELECT_T1_VALUE for debugging.
600+
597601

598602
static void dl_data_indication (ax25_dlsm_t *S, int pid, char *data, int len);
599603

@@ -6225,7 +6229,7 @@ static void select_t1_value (ax25_dlsm_t *S)
62256229

62266230
// This goes up exponentially if implemented as documented!
62276231
// For example, if we were trying to connect to a station which is not there, we
6228-
// would retry after 3, the 8, 16, 32, ... and not time out for over an hour.
6232+
// would retry after 3, then 8, 16, 32, ... and not time out for over an hour.
62296233
// That's ridiculous. Let's try increasing it by a quarter second each time.
62306234
// We now give up after about a minute.
62316235

@@ -6242,12 +6246,30 @@ static void select_t1_value (ax25_dlsm_t *S)
62426246
}
62436247

62446248

6249+
// See https://groups.io/g/direwolf/topic/100782658#8542
6250+
// Perhaps the demands of file transfer lead to this problem.
6251+
6252+
// "Temporary" hack.
6253+
// Automatic fine tuning of t1v generally works well, but on very rare occasions, it gets wildly out of control.
6254+
// Until I have more time to properly diagnose this, add some guardrails so it does not go flying off a cliff.
6255+
6256+
// The initial value of t1v is frack + frack * 2 (number of digipeateers in path)
6257+
// If anything, it should automatically be adjusted down.
6258+
// Let's say, something smells fishy if it exceeds twice that initial value.
6259+
6260+
// TODO: Add some instrumentation to record where this was called from and all the values in the printf below.
6261+
6262+
#if 1
6263+
if (S->t1v < 0.25 || S->t1v > 2 * (g_misc_config_p->frack * (2 * (S->num_addr - 2) + 1)) ) {
6264+
INIT_T1V_SRT;
6265+
}
6266+
#else
62456267
if (S->t1v < 0.99 || S->t1v > 30) {
62466268
text_color_set(DW_COLOR_ERROR);
62476269
dw_printf ("INTERNAL ERROR? Stream %d: select_t1_value, rc = %d, t1 remaining = %.3f, old srt = %.3f, new srt = %.3f, Extreme new t1v = %.3f\n",
62486270
S->stream_id, S->rc, S->t1_remaining_when_last_stopped, old_srt, S->srt, S->t1v);
62496271
}
6250-
6272+
#endif
62516273
} /* end select_t1_value */
62526274

62536275

0 commit comments

Comments
 (0)