--- zzzz-none-000/linux-2.6.19.2/net/dccp/ackvec.c 2007-01-10 19:10:37.000000000 +0000 +++ davinci-8020-5504/linux-2.6.19.2/net/dccp/ackvec.c 2007-01-11 07:38:19.000000000 +0000 @@ -113,7 +113,7 @@ memcpy(to, from, len); /* - * From RFC 4340, A.2: + * From draft-ietf-dccp-spec-11.txt: * * For each acknowledgement it sends, the HC-Receiver will add an * acknowledgement record. ack_seqno will equal the HC-Receiver @@ -224,7 +224,7 @@ } /* - * Implements the RFC 4340, Appendix A + * Implements the draft-ietf-dccp-spec-11.txt Appendix A */ int dccp_ackvec_add(struct dccp_ackvec *av, const struct sock *sk, const u64 ackno, const u8 state) @@ -237,7 +237,7 @@ * We may well decide to do buffer compression, etc, but for now lets * just drop. * - * From Appendix A.1.1 (`New Packets'): + * From Appendix A: * * Of course, the circular buffer may overflow, either when the * HC-Sender is sending data at a very high rate, when the @@ -274,9 +274,9 @@ /* * A.1.2. Old Packets * - * When a packet with Sequence Number S <= buf_ackno - * arrives, the HC-Receiver will scan the table for - * the byte corresponding to S. (Indexing structures + * When a packet with Sequence Number S arrives, and + * S <= buf_ackno, the HC-Receiver will scan the table + * for the byte corresponding to S. (Indexing structures * could reduce the complexity of this scan.) */ u64 delta = dccp_delta_seqno(ackno, av->dccpav_buf_ackno);