dccp: Bug in initial acknowledgment number assignment
authorGerrit Renker <gerrit@erg.abdn.ac.uk>
Wed, 11 Jun 2008 10:19:10 +0000 (11:19 +0100)
committerGerrit Renker <gerrit@erg.abdn.ac.uk>
Wed, 11 Jun 2008 10:19:10 +0000 (11:19 +0100)
commitbe4c798a41bf626cdaacf96c382f116ed2f7dbe9
tree437f5d1e9d6a19c857d47055bc3dfc68a2b2b004
parent7deb0f851003287d7e259bf6b33548b144c0f2d5
dccp: Bug in initial acknowledgment number assignment

Step 8.5 in RFC 4340 says for the newly cloned socket

           Initialize S.GAR := S.ISS,

but what in fact the code (minisocks.c) does is

           Initialize S.GAR := S.ISR,

which is wrong (typo?) -- fixed by the patch.

Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
net/dccp/minisocks.c