Fix Typos

Change-Id: Id39fdec016115b34453698b73aacf7be7461504b
This commit is contained in:
Daniel Willmann
2025-03-05 15:40:21 +01:00
parent ba3d8905f9
commit 4bcb2f72e4
2 changed files with 2 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ struct osmo_tdef gtp_T_defs[] = {
.desc = "Counter N3-REQUESTS holds the maximum number of attempts made by GTP to send a request message"
},
{ .T = GTP_GSN_TIMER_T3_HOLD_RESPONSE, .default_val = 5 * 3 /* (GTP_GSN_TIMER_T3_RESPONSE * GTP_GSN_TIMER_N3_REQUESTS) */, .unit = OSMO_TDEF_S,
.desc = "Time a GTP respoonse message is kept cached to re-transmit it when a duplicate request is received. Value is generally equal to (T3-RESPONSE * N3-REQUESTS) set at the peer"
.desc = "Time a GTP response message is kept cached to re-transmit it when a duplicate request is received. Value is generally equal to (T3-RESPONSE * N3-REQUESTS) set at the peer"
},
{}
};

View File

@@ -515,7 +515,7 @@ static int gtp_resp(struct gsn_t *gsn, union gtp_packet *packet, int len, struct
} else {
unsigned int t3_hold_resp;
LOGP(DLGTP, LOGL_DEBUG, "Registering seq=%" PRIu16
" in restransmit resp queue\n", seq);
" in retransmit resp queue\n", seq);
t3_hold_resp = osmo_tdef_get(gsn->tdef, GTP_GSN_TIMER_T3_HOLD_RESPONSE, OSMO_TDEF_S, -1);
memcpy(&qmsg->p, packet, sizeof(union gtp_packet));
qmsg->l = len;