- Removed prefix.c and the prefix list. Adapter and route netmasks are now
[reactos.git] / reactos / drivers / net / tcpip / include / rawip.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS TCP/IP protocol driver
4 * FILE: include/rawip.h
5 * PURPOSE: Raw IP types and constants
6 */
7 #ifndef __RAWIP_H
8 #define __RAWIP_H
9
10 NTSTATUS RawIPSendDatagram(
11 PADDRESS_FILE AddrFile,
12 PTDI_CONNECTION_INFORMATION ConnInfo,
13 PCHAR Buffer,
14 ULONG DataSize,
15 PULONG DataUsed);
16
17 VOID RawIPReceive(
18 PIP_INTERFACE Interface,
19 PIP_PACKET IPPacket);
20
21 NTSTATUS RawIPStartup(
22 VOID);
23
24 NTSTATUS RawIPShutdown(
25 VOID);
26
27 #endif /* __RAWIP_H */
28
29 /* EOF */