ReactOS 0.4.16-dev-311-g9382aa2
|
Go to the source code of this file.
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) |
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.