ReactOS 0.4.16-dev-336-gb667d82
|
#include "precomp.h"
Go to the source code of this file.
Classes | |
struct | _AFD_CREATE_PACKET_NT6 |
Macros | |
#define | DD_UDP_DEVICE_NAME L"\\Device\\Udp" |
Typedefs | |
typedef struct _AFD_CREATE_PACKET_NT6 | AFD_CREATE_PACKET_NT6 |
typedef struct _AFD_CREATE_PACKET_NT6 * | PAFD_CREATE_PACKET_NT6 |
Functions | |
NTSTATUS | AfdCreateSocket (_Out_ PHANDLE SocketHandle, _In_ int AddressFamily, _In_ int SocketType, _In_ int Protocol) |
NTSTATUS | AfdBind (_In_ HANDLE SocketHandle, _In_ const struct sockaddr *Address, _In_ ULONG AddressLength) |
NTSTATUS | AfdConnect (_In_ HANDLE SocketHandle, _In_ const struct sockaddr *Address, _In_ ULONG AddressLength) |
NTSTATUS | AfdSend (_In_ HANDLE SocketHandle, _In_ const void *Buffer, _In_ ULONG BufferLength) |
NTSTATUS | AfdSendTo (_In_ HANDLE SocketHandle, _In_ const void *Buffer, _In_ ULONG BufferLength, _In_ const struct sockaddr *Address, _In_ ULONG AddressLength) |
NTSTATUS | AfdSetInformation (_In_ HANDLE SocketHandle, _In_ ULONG InformationClass, _In_opt_ PBOOLEAN Boolean, _In_opt_ PULONG Ulong, _In_opt_ PLARGE_INTEGER LargeInteger) |
NTSTATUS | AfdGetInformation (_In_ HANDLE SocketHandle, _In_ ULONG InformationClass, _In_opt_ PBOOLEAN Boolean, _In_opt_ PULONG Ulong, _In_opt_ PLARGE_INTEGER LargeInteger) |
#define DD_UDP_DEVICE_NAME L"\\Device\\Udp" |
Definition at line 11 of file AfdHelpers.c.
NTSTATUS AfdBind | ( | _In_ HANDLE | SocketHandle, |
_In_ const struct sockaddr * | Address, | ||
_In_ ULONG | AddressLength | ||
) |
Definition at line 134 of file AfdHelpers.c.
Referenced by TestSend(), TestSendTo(), TestTcp(), and TestUdp().
NTSTATUS AfdConnect | ( | _In_ HANDLE | SocketHandle, |
_In_ const struct sockaddr * | Address, | ||
_In_ ULONG | AddressLength | ||
) |
Definition at line 197 of file AfdHelpers.c.
Referenced by TestSend(), and TestTcp().
NTSTATUS AfdCreateSocket | ( | _Out_ PHANDLE | SocketHandle, |
_In_ int | AddressFamily, | ||
_In_ int | SocketType, | ||
_In_ int | Protocol | ||
) |
Definition at line 24 of file AfdHelpers.c.
NTSTATUS AfdGetInformation | ( | _In_ HANDLE | SocketHandle, |
_In_ ULONG | InformationClass, | ||
_In_opt_ PBOOLEAN | Boolean, | ||
_In_opt_ PULONG | Ulong, | ||
_In_opt_ PLARGE_INTEGER | LargeInteger | ||
) |
Definition at line 447 of file AfdHelpers.c.
Definition at line 264 of file AfdHelpers.c.
Referenced by TestSend().
NTSTATUS AfdSendTo | ( | _In_ HANDLE | SocketHandle, |
_In_ const void * | Buffer, | ||
_In_ ULONG | BufferLength, | ||
_In_ const struct sockaddr * | Address, | ||
_In_ ULONG | AddressLength | ||
) |
Definition at line 314 of file AfdHelpers.c.
Referenced by TestSendTo().
NTSTATUS AfdSetInformation | ( | _In_ HANDLE | SocketHandle, |
_In_ ULONG | InformationClass, | ||
_In_opt_ PBOOLEAN | Boolean, | ||
_In_opt_ PULONG | Ulong, | ||
_In_opt_ PLARGE_INTEGER | LargeInteger | ||
) |
Definition at line 388 of file AfdHelpers.c.