Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygendatagram.h
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: ReactOS TCP/IP protocol driver 00004 * FILE: include/datagram.h 00005 * PURPOSE: Datagram types and constants 00006 */ 00007 00008 #pragma once 00009 00010 #include <titypes.h> 00011 00012 NTSTATUS DGReceiveDatagram( 00013 PADDRESS_FILE AddrFile, 00014 PTDI_CONNECTION_INFORMATION ConnInfo, 00015 PCHAR Buffer, 00016 ULONG ReceiveLength, 00017 ULONG ReceiveFlags, 00018 PTDI_CONNECTION_INFORMATION ReturnInfo, 00019 PULONG BytesReceived, 00020 PDATAGRAM_COMPLETION_ROUTINE Complete, 00021 PVOID Context, 00022 PIRP Irp); 00023 00024 BOOLEAN DGRemoveIRP( 00025 PADDRESS_FILE AddrFile, 00026 PIRP Irp); 00027 00028 VOID DGDeliverData( 00029 PADDRESS_FILE AddrFile, 00030 PIP_ADDRESS SrcAddress, 00031 PIP_ADDRESS DstAddress, 00032 USHORT SrcPort, 00033 USHORT DstPort, 00034 PIP_PACKET IPPacket, 00035 UINT DataSize); 00036 00037 /* EOF */ Generated on Fri May 25 2012 04:26:11 for ReactOS by
1.7.6.1
|