TCPIP_STACK_NetBIOSName Function
C
const char* TCPIP_STACK_NetBIOSName(
TCPIP_NET_HANDLE netH
);
Description
This function returns the network interface NetBIOS name.
Preconditions
The TCP/IP stack should have been initialized by TCPIP_STACK_Initialize() and the TCPIP_STACK_Status() returned SYS_STATUS_READY.
Parameters
Parameters | Description |
---|---|
netH | Interface handle to get name of. |
Returns
Pointer to the NetBIOS name of that interface.
Remarks
None.
Example
TCPIP_NET_HANDLE netH = TCPIP_STACK_NetHandleGet("PIC32INT");
const char* biosName = TCPIP_STACK_NetBIOSName(netH);