NDK_FN_GET_LOCAL_ADDRESS callback function (ndkpi.h)
The NdkGetLocalAddress (NDK_FN_GET_LOCAL_ADDRESS) function returns the local address for an NDK connection.
Syntax
NDK_FN_GET_LOCAL_ADDRESS NdkFnGetLocalAddress;
NTSTATUS NdkFnGetLocalAddress(
[in] NDK_CONNECTOR *pNdkConnector,
PSOCKADDR pAddress,
ULONG *pAddressLength
)
{...}
Parameters
[in] pNdkConnector
A pointer to an NDK connector object (NDK_CONNECTOR).
pAddress
A local address for a listener is returned in this buffer.
pAddressLength
The size, in bytes, of the address buffer for input, and the size, in bytes, of the address written into the buffer for output.
Return value
The NdkGetLocalAddress function returns one of the following NTSTATUS codes.
Return code | Description |
---|---|
|
The local address was written to the buffer in the pAddress parameter. |
|
The buffer size specified in the *pAddressLength parameter input is too small. *pAddressLength output value is updated with the required buffer size. |
|
An error occurred. |
Remarks
NdkGetLocalAddress returns the local address for a connection.
Requirements
Requirement | Value |
---|---|
Minimum supported client | None supported,Supported in NDIS 6.30 and later. |
Minimum supported server | Windows Server 2012 |
Target Platform | Windows |
Header | ndkpi.h (include Ndkpi.h) |
IRQL | <=DISPATCH_LEVEL |