mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
5eb25b5c24
svn path=/branches/audio-bringup/; revision=49478
64 lines
2.2 KiB
C
64 lines
2.2 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS TCP/IP protocol driver
|
|
* FILE: include/receive.h
|
|
* PURPOSE: Internet Protocol receive prototypes
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ip.h>
|
|
|
|
/* Number of timeout ticks before destroying the IPDR */
|
|
#define MAX_TIMEOUT_COUNT 10
|
|
|
|
/* IP datagram fragment descriptor. Used to store IP datagram fragments */
|
|
typedef struct IP_FRAGMENT {
|
|
LIST_ENTRY ListEntry; /* Entry on list */
|
|
PVOID Data; /* Pointer to fragment data */
|
|
UINT Offset; /* Offset into datagram where this fragment is */
|
|
UINT Size; /* Size of this fragment */
|
|
} IP_FRAGMENT, *PIP_FRAGMENT;
|
|
|
|
/* IP datagram hole descriptor. Used to reassemble IP datagrams */
|
|
typedef struct IPDATAGRAM_HOLE {
|
|
LIST_ENTRY ListEntry; /* Entry on list */
|
|
UINT First; /* Offset of first octet of the hole */
|
|
UINT Last; /* Offset of last octet of the hole */
|
|
} IPDATAGRAM_HOLE, *PIPDATAGRAM_HOLE;
|
|
|
|
/* IP datagram reassembly information */
|
|
typedef struct IPDATAGRAM_REASSEMBLY {
|
|
LIST_ENTRY ListEntry; /* Entry on list */
|
|
KSPIN_LOCK Lock; /* Protecting spin lock */
|
|
UINT DataSize; /* Size of datagram data area */
|
|
IP_ADDRESS SrcAddr; /* Source address */
|
|
IP_ADDRESS DstAddr; /* Destination address */
|
|
UCHAR Protocol; /* Internet Protocol number */
|
|
USHORT Id; /* Identification number */
|
|
IP_HEADER IPv4Header; /* Pointer to IP header */
|
|
UINT HeaderSize; /* Length of IP header */
|
|
LIST_ENTRY FragmentListHead; /* IP fragment list */
|
|
LIST_ENTRY HoleListHead; /* IP datagram hole list */
|
|
UINT TimeoutCount; /* Timeout counter */
|
|
} IPDATAGRAM_REASSEMBLY, *PIPDATAGRAM_REASSEMBLY;
|
|
|
|
|
|
extern LIST_ENTRY ReassemblyListHead;
|
|
extern KSPIN_LOCK ReassemblyListLock;
|
|
extern NPAGED_LOOKASIDE_LIST IPDRList;
|
|
extern NPAGED_LOOKASIDE_LIST IPFragmentList;
|
|
extern NPAGED_LOOKASIDE_LIST IPHoleList;
|
|
|
|
|
|
VOID IPFreeReassemblyList(
|
|
VOID);
|
|
|
|
VOID IPDatagramReassemblyTimeout(
|
|
VOID);
|
|
|
|
VOID IPReceive(
|
|
PIP_INTERFACE IF,
|
|
PIP_PACKET IPPacket);
|
|
|
|
/* EOF */
|