[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20081217112600.GA19106@gondor.apana.org.au>
Date: Wed, 17 Dec 2008 22:26:00 +1100
From: Herbert Xu <herbert@...dor.apana.org.au>
To: Petr Tesarik <ptesarik@...e.cz>
Cc: Ilpo J??rvinen <ilpo.jarvinen@...sinki.fi>, davem@...emloft.net,
netdev@...r.kernel.org
Subject: Re: [PATCH] tcp: make urg+gso work for real this time
On Wed, Dec 17, 2008 at 11:52:23AM +0100, Petr Tesarik wrote:
>
> In short, if you keep urg_ptr at 0xffff while moving forward in the
> stream, the receiving side will interpret it as multiple urgent data.
> Not quite what you want, I think.
I just checked NetBSD and guess what, they do exactly what I've
suggested:
if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
u_int32_t urp = tp->snd_up - tp->snd_nxt;
if (urp > IP_MAXPACKET)
urp = IP_MAXPACKET;
th->th_urp = htons((u_int16_t)urp);
th->th_flags |= TH_URG;
} else
So if you think this is bad then it's been there for decades :)
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@...dor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists