ccid2.h 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 *  net/dccp/ccids/ccid2.h
 *
 *  Copyright (c) 2005 Andrea Bittau <a.bittau@cs.ucl.ac.uk>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
#ifndef _DCCP_CCID2_H_
#define _DCCP_CCID2_H_

23 24 25 26
#include <linux/dccp.h>
#include <linux/timer.h>
#include <linux/types.h>
#include "../ccid.h"
27 28
/* NUMDUPACK parameter from RFC 4341, p. 6 */
#define NUMDUPACK	3
29 30 31

struct sock;

32 33 34 35 36 37 38 39
struct ccid2_seq {
	u64			ccid2s_seq;
	unsigned long		ccid2s_sent;
	int			ccid2s_acked;
	struct ccid2_seq	*ccid2s_prev;
	struct ccid2_seq	*ccid2s_next;
};

40
#define CCID2_SEQBUF_LEN 1024
41 42
#define CCID2_SEQBUF_MAX 128

43 44
/** struct ccid2_hc_tx_sock - CCID2 TX half connection
 *
45 46 47 48 49
 * @{cwnd,ssthresh,pipe}: as per RFC 4341, section 5
 * @packets_acked: Ack counter for deriving cwnd growth (RFC 3465)
 * @lastrtt: time RTT was last measured
 * @rpseq: last consecutive seqno
 * @rpdupack: dupacks since rpseq
50
 * @av_chunks: list of Ack Vectors received on current skb
51
 */
52
struct ccid2_hc_tx_sock {
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
	u32			cwnd;
	u32			ssthresh;
	u32			pipe;
	u32			packets_acked;
	struct ccid2_seq	*seqbuf[CCID2_SEQBUF_MAX];
	int			seqbufc;
	struct ccid2_seq	*seqh;
	struct ccid2_seq	*seqt;
	long			rto;
	long			srtt;
	long			rttvar;
	unsigned long		lastrtt;
	struct timer_list	rtotimer;
	u64			rpseq;
	int			rpdupack;
	unsigned long		last_cong;
	u64			high_ack;
70
	struct list_head	av_chunks;
71 72
};

G
Gerrit Renker 已提交
73 74 75 76 77
static inline bool ccid2_cwnd_network_limited(struct ccid2_hc_tx_sock *hctx)
{
	return (hctx->pipe >= hctx->cwnd);
}

78
struct ccid2_hc_rx_sock {
79
	int			data;
80 81
};

82 83 84 85 86 87 88 89 90
static inline struct ccid2_hc_tx_sock *ccid2_hc_tx_sk(const struct sock *sk)
{
	return ccid_priv(dccp_sk(sk)->dccps_hc_tx_ccid);
}

static inline struct ccid2_hc_rx_sock *ccid2_hc_rx_sk(const struct sock *sk)
{
	return ccid_priv(dccp_sk(sk)->dccps_hc_rx_ccid);
}
91
#endif /* _DCCP_CCID2_H_ */