Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenrawip.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/rawip.h 00005 * PURPOSE: Raw IP types and constants 00006 */ 00007 00008 #pragma once 00009 00010 NTSTATUS RawIPSendDatagram( 00011 PADDRESS_FILE AddrFile, 00012 PTDI_CONNECTION_INFORMATION ConnInfo, 00013 PCHAR Buffer, 00014 ULONG DataSize, 00015 PULONG DataUsed); 00016 00017 VOID RawIpReceive( 00018 PIP_INTERFACE Interface, 00019 PIP_PACKET IPPacket); 00020 00021 NTSTATUS RawIPStartup( 00022 VOID); 00023 00024 NTSTATUS RawIPShutdown( 00025 VOID); 00026 00027 NTSTATUS AddGenericHeaderIPv4( 00028 PADDRESS_FILE AddrFile, 00029 PIP_ADDRESS RemoteAddress, 00030 USHORT RemotePort, 00031 PIP_ADDRESS LocalAddress, 00032 USHORT LocalPort, 00033 PIP_PACKET IPPacket, 00034 UINT DataLength, 00035 UINT Protocol, 00036 UINT ExtraLength, 00037 PVOID *NextHeader ); 00038 00039 /* EOF */ Generated on Fri May 25 2012 04:26:12 for ReactOS by
1.7.6.1
|