mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
63 lines
2.1 KiB
C
63 lines
2.1 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
|
|
*/
|
|
#ifndef __RECEIVE_H
|
|
#define __RECEIVE_H
|
|
|
|
#include <ip.h>
|
|
|
|
|
|
/* 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 */
|
|
} 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);
|
|
|
|
#endif /* __RECEIVE_H */
|
|
|
|
/* EOF */
|