mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:31:40 +00:00
Create a branch for network fixes.
svn path=/branches/aicom-network-fixes/; revision=34994
This commit is contained in:
parent
0e213bbc00
commit
c501d8112c
18148 changed files with 0 additions and 860488 deletions
40
drivers/network/tcpip/include/rawip.h
Normal file
40
drivers/network/tcpip/include/rawip.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS TCP/IP protocol driver
|
||||
* FILE: include/rawip.h
|
||||
* PURPOSE: Raw IP types and constants
|
||||
*/
|
||||
#ifndef __RAWIP_H
|
||||
#define __RAWIP_H
|
||||
|
||||
NTSTATUS RawIPSendDatagram(
|
||||
PADDRESS_FILE AddrFile,
|
||||
PTDI_CONNECTION_INFORMATION ConnInfo,
|
||||
PCHAR Buffer,
|
||||
ULONG DataSize,
|
||||
PULONG DataUsed);
|
||||
|
||||
VOID RawIPReceive(
|
||||
PIP_INTERFACE Interface,
|
||||
PIP_PACKET IPPacket);
|
||||
|
||||
NTSTATUS RawIPStartup(
|
||||
VOID);
|
||||
|
||||
NTSTATUS RawIPShutdown(
|
||||
VOID);
|
||||
|
||||
NTSTATUS AddGenericHeaderIPv4(
|
||||
PIP_ADDRESS RemoteAddress,
|
||||
USHORT RemotePort,
|
||||
PIP_ADDRESS LocalAddress,
|
||||
USHORT LocalPort,
|
||||
PIP_PACKET IPPacket,
|
||||
UINT DataLength,
|
||||
UINT Protocol,
|
||||
UINT ExtraLength,
|
||||
PVOID *NextHeader );
|
||||
|
||||
#endif /* __RAWIP_H */
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue