TCPIP_TELNET_ConnectionInfoGet Function

C

bool TCPIP_TELNET_ConnectionInfoGet(
    uint16_t connIx, 
    TCPIP_TELNET_CONN_INFO* pInfo
);

Description

This function gets information about a telnet connection.

Preconditions

The Telnet module should have been initialized.

Parameters

ParametersDescription
connIxIndex of the connection to get the info for. Valid range is .
pInfoPointer to a TCPIP_TELNET_CONN_INFO to be filled with connection data Could be NULL if not needed.

Returns

  • True - If the connIx is a valid telnet connection number.

  • False - Otherwise.

Remarks

None.