From: Jules Maselbas <jmaselbas@kalray.eu> To: barebox@lists.infradead.org Subject: Re: [PATCH] fixup! net: dns: Generate and verify transaction ID Date: Fri, 6 May 2022 17:16:19 +0200 [thread overview] Message-ID: <20220506151619.GG10082@tellis.lin.mbt.kalray.eu> (raw) In-Reply-To: <20220506145856.14831-1-jmaselbas@kalray.eu> On Fri, May 06, 2022 at 04:58:56PM +0200, Jules Maselbas wrote: > Signed-off-by: Jules Maselbas <jmaselbas@kalray.eu> > --- > net/dns.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/net/dns.c b/net/dns.c > index 9ad316e33..9803ef475 100644 > --- a/net/dns.c > +++ b/net/dns.c > @@ -58,7 +58,7 @@ struct header { > > static struct net_connection *dns_con; > static uint64_t dns_timer_start; > -static uin32_t dns_req_id; > +static uint32_t dns_req_id; s/uint32_t/uint16_t/ > static int dns_state; > static IPaddr_t dns_ip; > > @@ -132,7 +132,7 @@ static void dns_recv(struct header *header, unsigned len) > pr_debug("%s\n", __func__); > > /* Only accept responses with the expected request id */ > - if (ntohs(header->id) != dns_req_id) > + if (ntohs(header->tid) != dns_req_id) > return; > > /* We sent 1 query. We want to see more that 1 answer. */ > -- > 2.17.1 > _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2022-05-06 15:17 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-05-05 10:08 [PATCH] " Jules Maselbas 2022-05-06 14:58 ` [PATCH] fixup! " Jules Maselbas 2022-05-06 14:59 ` Jules Maselbas 2022-05-06 15:16 ` Jules Maselbas [this message] 2022-05-06 15:04 ` [PATCH] " Jules Maselbas 2022-05-09 7:17 ` Sascha Hauer
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20220506151619.GG10082@tellis.lin.mbt.kalray.eu \ --to=jmaselbas@kalray.eu \ --cc=barebox@lists.infradead.org \ --subject='Re: [PATCH] fixup'\!' net: dns: Generate and verify transaction ID' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox