diff options
author | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2011-07-24 21:18:25 -0600 |
---|---|---|
committer | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2011-08-01 07:52:35 -0600 |
commit | 31daf0393fbb17cf6efe613fb538a3ea4b5202e4 (patch) | |
tree | 1b6cca8e816283593ee6965198014f997fc91b11 /net/dccp/proto.c | |
parent | a6444f4237af6c9981ddd45ab35a5c06d4e5a4d8 (diff) | |
download | talos-obmc-linux-31daf0393fbb17cf6efe613fb538a3ea4b5202e4.tar.gz talos-obmc-linux-31daf0393fbb17cf6efe613fb538a3ea4b5202e4.zip |
dccp ccid-2: use feature-negotiation to report Ack Ratio changes
This uses the new feature-negotiation framework to signal Ack Ratio changes,
as required by RFC 4341, sec. 6.1.2.
That raises some problems with CCID-2, which at the moment can not cope
gracefully with Ack Ratios > 1. Since these issues are not directly related
to feature negotiation, they are marked by a FIXME.
Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: Samuel Jero <sj323707@ohio.edu>
Acked-by: Ian McDonald <ian.mcdonald@jandi.co.uk>
Diffstat (limited to 'net/dccp/proto.c')
-rw-r--r-- | net/dccp/proto.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/dccp/proto.c b/net/dccp/proto.c index 152975d942d9..e742f90a6858 100644 --- a/net/dccp/proto.c +++ b/net/dccp/proto.c @@ -184,7 +184,6 @@ int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized) dp->dccps_rate_last = jiffies; dp->dccps_role = DCCP_ROLE_UNDEFINED; dp->dccps_service = DCCP_SERVICE_CODE_IS_ABSENT; - dp->dccps_l_ack_ratio = dp->dccps_r_ack_ratio = 1; dp->dccps_tx_qlen = sysctl_dccp_tx_qlen; dccp_init_xmit_timers(sk); |