Deleted Added
sdiff udiff text old ( 179737 ) new ( 217126 )
full compact
1/*******************************************************************************
2
3Copyright (c) 2006, Myricom Inc.
4Copyright (c) 2008, Intel Corporation.
5All rights reserved.
6
7Redistribution and use in source and binary forms, with or without
8modification, are permitted provided that the following conditions are met:

--- 17 unchanged lines hidden (view full) ---

26CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31POSSIBILITY OF SUCH DAMAGE.
32
33
34$FreeBSD: head/sys/netinet/tcp_lro.h 179737 2008-06-11 22:12:50Z jfv $
35
36***************************************************************************/
37#ifndef _TCP_LRO_H_
38#define _TCP_LRO_H_
39
40struct lro_entry;
41struct lro_entry
42{
43 SLIST_ENTRY(lro_entry) next;
44 struct mbuf *m_head;
45 struct mbuf *m_tail;
46 int timestamp;
47 struct ip *ip;
48 uint32_t tsval;
49 uint32_t tsecr;
50 uint32_t source_ip;
51 uint32_t dest_ip;
52 uint32_t next_seq;

--- 33 unchanged lines hidden ---