NbtTdiOpenAddress(
OUT PHANDLE pHandle,
OUT PDEVICE_OBJECT *ppDeviceObject,
OUT PFILE_OBJECT *ppFileObject,
IN tDEVICECONTEXT *pDeviceContext,
IN USHORT PortNumber,
IN ULONG IpAddress,
IN ULONG Flags
);
Routine Description:
Note: This synchronous call may take a number of seconds. It runs in
the context of the caller. The code Opens an Address object with the
transport provider and then sets up event handlers for Receive,
Disconnect, Datagrams and Errors.
THIS ROUTINE MUST BE CALLED IN THE CONTEXT OF THE FSP (I.E.
PROBABLY AN EXECUTIVE WORKER THREAD).
The address data structures are found in tdi.h , but they are rather
confusing since the definitions have been spread across several data types.
This section shows the complete data type for Ip address:
typedef struct
{
int TA_AddressCount;
struct _TA_ADDRESS
{
USHORT AddressType;
USHORT AddressLength;
struct _TDI_ADDRESS_IP
{
USHORT sin_port;
USHORT in_addr;
UCHAR sin_zero[8];
} TDI_ADDRESS_IP
} TA_ADDRESS[AddressCount];
} TRANSPORT_ADDRESS
An EA buffer is allocated (for the IRP), with an EA name of "TransportAddress"
and value is a structure of type TRANSPORT_ADDRESS.
Arguments:
Return Value:
The function value is the status of the operation.