This chapter contains a description of all NetX Duo Telnet Services (listed below) in alphabetic order.
In the "Return Values" section in the following API descriptions, values in BOLD are not affected by the NX_DISABLE_ERROR_CHECKING define that is used to disable API error checking, while non-bold values are completely disabled.
Connect a Telnet Client with IPv4 address
UINT nx_telnet_client_connect(
NX_TELNET_CLIENT *client_ptr,
ULONG server_ip,
UINT server_port,
ULONG wait_option);
This service attempts to connect the previously created Telnet Client instance to the Server at the specified IP and port using an IPv4 address for the Telnet Server. This service actually inserts the ULONG server IP address in an NXD_ADDRESS control block and sets the IP version to 4 before calling the nxd_telnet_client_connect service described below.
-
client_ptr: Pointer to Telnet Client control block.
-
server_ip: IPv4 Address of the Telnet Server.
-
server_port: TCP Port of Server (Telnet Server is port 23).
-
wait_option: Defines how long the service will wait for the Telnet Client connect. The wait options are defined as follows:
-
timeout value: (0x00000001 through 0xFFFFFFFE) Selecting a numeric value (1-0xFFFFFFFE) specifies the maximum number of timer-ticks to stay suspended while waiting for the Telnet Server response.
-
TX_WAIT_FOREVER: (0xFFFFFFFF)Selecting TX_WAIT_FOREVER causes the calling thread to suspend indefinitely until the Telnet Server responds to the request.
-
-
NX_SUCCESS: (0x00) Successful Client connect.
-
NX_TELNET_NOT_DISCONNECTED: (0xF4) Client already connected.
-
NX_PTR_ERROR: (0x07) Invalid Client pointer.
-
NX_IP_ADDRESS_ERROR: (0x21) Invalid IP address.
-
NX_CALLER_ERROR: (0x11) Invalid caller of service.
Connect a Telnet Client with IPv6 or IPv4 address
UINT nxd_telnet_client_connect(
NX_TELNET_CLIENT *client_ptr,
NXD_ADDRESS *server_ip_address,
UINT server_port,
ULONG wait_option);
This service attempts to connect the previously created Telnet Client instance to the Server at the specified IP and port using the Telnet Server’s IPv6 address. This service can take an IPv4 or an IPv6 address but must be contained in the NXD_ADDRESS variable server_ip_address.
-
client_ptr: Pointer to Telnet Client control block.
-
server_ip_address: IP Address of Server.
-
server_port: TCP Port of Server (Telnet Server is port 23).
-
wait_option: Defines how long the service will wait for the Telnet Client connect. The wait options are defined as follows:
-
timeout value: (0x00000001 through 0xFFFFFFFE) Selecting a numeric value (1-0xFFFFFFFE) specifies the maximum number of timer-ticks to stay suspended while waiting for the Telnet Server response.
-
TX_WAIT_FOREVER: (0xFFFFFFFF) Selecting TX_WAIT_FOREVER causes the calling thread to suspend indefinitely until the Telnet Server responds to the request.
-
-
NX_SUCCESS: (0x00) Successful Client connect.
-
NX_TELNET_ERROR: (0xF0) Client connect error.
-
NX_TELNET_NOT_DISCONNECTED: (0xF4) Client already connected.
-
NX_PTR_ERROR: (0x07) Invalid Client pointer.
-
NX_CALLER_ERROR: (0x11) Invalid caller of service.
-
NX_TELNET_INVALID_PARAMETER: (0xF5) Invalid non pointer input
/* Connect the Telnet Client instance "my_client" to the Server at
IPv6 address 20010db1:0:f101::101 and port 23. */
status = nxd_telnet_client_connect(&my_client, &server_ip_address, 23, 100);
/* If status is NX_SUCCESS the Telnet Client instance was successfully
connected to the Telnet Server. */
Create a Telnet Client
UINT nx_telnet_client_create(
NX_TELNET_CLIENT *client_ptr,
CHAR *client_name, NX_IP *ip_ptr,
ULONG window_size);
-
client_ptr: Pointer to Telnet Client control block.
-
client_name: Name of Client instance.
-
ip_ptr: Pointer to IP instance.
-
window_size: Size of TCP receive window for this Client.
-
NX_SUCCESS: (0x00) Successful Client create.
-
NX_TELNET_ERROR: (0xF0) Socket create error.
-
NX_PTR_ERROR: (0x07) Invalid Client or IP pointer.
Delete a Telnet Client
-
NX_SUCCESS: (0x00) Successful Client delete.
-
NX_TELNET_NOT_DISCONNECTED: (0xF4) Client still connected.
-
NX_PTR_ERROR: (0x07) Invalid Client pointer.
-
NX_CALLER_ERROR: (0x11) Invalid caller of this service.
Disconnect a Telnet Client
-
client_ptr: Pointer to Telnet Client control block.
-
wait_option: Defines how long the service will wait for the Telnet Client disconnect. The wait options are defined as follows:
-
timeout value: (0x00000001 through 0xFFFFFFFE) Selecting a numeric value (1-0xFFFFFFFE) specifies the maximum number of timer-ticks to stay suspended while waiting for the Telnet Server response.
-
TX_WAIT_FOREVER: (0xFFFFFFFF) Selecting TX_WAIT_FOREVER causes the calling thread to suspend indefinitely until the Telnet Server responds to the request.
-
-
NX_SUCCESS: (0x00) Successful Client disconnect.
-
NX_TELNET_NOT_CONNECTED: (0xF3) Client not connected.
-
NX_PTR_ERROR: (0x07) Invalid Client pointer.
-
NX_CALLER_ERROR: (0x11) Invalid caller of this service.
Receive packet via Telnet Client
UINT nx_telnet_client_packet_receive(
NX_TELNET_CLIENT *client_ptr,
NX_PACKET **packet_ptr,
ULONG wait_option);
-
client_ptr: Pointer to Telnet Client control block.
-
packet_ptr: Pointer to the destination for the received packet.
-
wait_option: Defines how long the service will wait for the Telnet Client packet receive. The wait options are defined as follows:
-
timeout value: (0x00000001 through 0xFFFFFFFE) Selecting a numeric value (1-0xFFFFFFFE) specifies the maximum number of timer-ticks to stay suspended while waiting for the Telnet Server response.
-
TX_WAIT_FOREVER: (0xFFFFFFFF) Selecting TX_WAIT_FOREVER causes the calling thread to suspend indefinitely until the Telnet Server responds to the request.
-
-
NX_SUCCESS: (0x00) Successful Client packet receive.
-
NX_PTR_ERROR: (0x07) Invalid pointer input
-
NX_CALLER_ERROR: (0x11) Invalid caller of service.
Send packet via Telnet Client
UINT nx_telnet_client_packet_send(
NX_TELNET_CLIENT *client_ptr,
NX_PACKET *packet_ptr,
ULONG wait_option);
-
client_ptr: Pointer to Telnet Client control block.
-
packet_ptr: Pointer to the packet to send.
-
wait_option: Defines how long the service will wait for the Telnet Client packet send. The wait options are defined as follows:
-
timeout value: (0x00000001 through 0xFFFFFFFE) Selecting a numeric value (1-0xFFFFFFFE) specifies the maximum number of timer-ticks to stay suspended while waiting for the Telnet Server response.
-
TX_WAIT_FOREVER: (0xFFFFFFFF) Selecting TX_WAIT_FOREVER causes the calling thread to suspend indefinitely until the Telnet Server responds to the request.
-
-
NX_SUCCESS: (0x00) Successful Client packet send.
-
NX_TELNET_ERROR: (0xF0) Send packet failed — caller is responsible for releasing the packet.
-
NX_PTR_ERROR: (0x07) Invalid pointer input
-
NX_CALLER_ERROR: (0x11) Invalid caller of service.
Create a Telnet Server
UINT nx_telnet_server_create(
NX_TELNET_SERVER *server_ptr,
CHAR *server_name,
NX_IP *ip_ptr,
VOID *stack_ptr,
ULONG stack_size,
void (*new_connection)(
struct NX_TELNET_SERVER_STRUCT*telnet_server_ptr,
UINT logical_connection),
void (*receive_data)(
struct NX_TELNET_SERVER_STRUCT *telnet_server_ptr,
UINT logical_connection,
NX_PACKET *packet_ptr),
void (*connection_end)(
struct NX_TELNET_SERVER_STRUCT *telnet_server_ptr,
UINT logical_connection));
-
server_ptr: Pointer to Telnet Server control block.
-
server_name: Name of Telnet Server instance.
-
ip_ptr: Pointer to associated IP instance.
-
stack_ptr: Pointer to stack for the internal Server thread.
-
sack_size: Size of the stack, in bytes.
-
new_connection: Application callback routine function pointer. This routine is called whenever a new Telnet Client connection request is detected by the Server.
-
receive_data: Application callback routine function pointer. This routine is called whenever a new Telnet Client data is present on the connection. This routine is responsible for releasing the packet.
-
end_connection: Application callback routine function pointer. This routine is called whenever a Telnet Client connection is disconnected by the Client or the Client connection times out ("activity timeout" expires). The Server can also disconnect via the nx_telnet_server_disconnect service described below.
-
NX_SUCCESS: (0x00) Successful Server create.
-
NX_PTR_ERROR: (0x07) Invalid Server, IP, stack, or application callback pointers.
Delete a Telnet Server
-
NX_SUCCESS: (0x00) Successful Server delete.
-
NX_PTR_ERROR: (0x07) Invalid Server pointer.
-
NX_CALLER_ERROR: (0x11) Invalid caller of this service.
Disconnect a Telnet Client
This service disconnects a previously connected Client on this Telnet Server instance. This routine is typically called from the application’s receive data callback function in response to a condition detected in the data received.
-
server_ptr: Pointer to Telnet Server control block.
-
logical_connection: Logical connection corresponding the Client connection on this Server. Valid value range from 0 through NX_TELNET_MAX_CLIENTS.
-
NX_SUCCESS: (0x00) Successful Server disconnect.
-
NX_TELNET_ERROR: (0xF0) Server disconnect failed.
-
NX_OPTION_ERROR: (0x0A) Invalid logical connection.
-
NX_PTR_ERROR: (0x07) Invalid Server pointer.
-
NX_CALLER_ERROR: (0x11) Invalid caller of this service.
Return number of currently open connections
UINT nx_telnet_server_get_open_connection_count(
NX_TELNET_SERVER *server_ptr,
UINT *connection_count);
-
server_ptr: Pointer to Telnet Server control block.
-
Connection_count: Pointer to memory to store connection count
-
NX_SUCCESS: (0x00) Successful completion.
-
NX_PTR_ERROR: (0x07) Invalid Server pointer.
-
NX_CALLER_ERROR: (0x11) Invalid caller of this service.
Send packet through Client connection
UINT nx_telnet_server_packet_send(
NX_TELNET_SERVER *server_ptr,
UINT logical_connection,
NX_PACKET *packet_ptr,
ULONG wait_option);
This service sends a packet to the Client connection on this Telnet Server instance. This routine is typically called from the application’s receive data callback function in response to a condition detected in the data received.
-
server_ptr: Pointer to Telnet Server control block.
-
logical_connection: Logical connection corresponding the Client connection on this Server. Valid value range from 0 through NX_TELNET_MAX_CLIENTS.
-
packet_ptr: Pointer to the received packet.
-
wait_option: Defines how long the service will wait for the Telnet Server packet send. The wait options are defined as follows:
-
*timeout value: (0x00000001 through 0xFFFFFFFE) Selecting a numeric value (1-0xFFFFFFFE) specifies the maximum number of timer-ticks to stay suspended while waiting for the Telnet Server response.
-
*TX_WAIT_FOREVER: (0xFFFFFFFF) Selecting TX_WAIT_FOREVER causes the calling thread to suspend indefinitely until the Telnet Server responds to the request.
-
-
NX_SUCCESS: (0x00) Successful packet send.
-
NX_TELNET_FAILED: (0xF2) TCP socket send failed.
-
NX_OPTION_ERROR: (0x0A) Invalid logical connection.
-
NX_PTR_ERROR: (0x07) Invalid Server pointer.
-
NX_CALLER_ERROR: (0x11) Invalid caller of service.
Set previously created packet pool as Telnet Server pool
UINT nx_telnet_server_packet_pool_set(
NX_TELNET_SERVER *server_ptr,
NX_PACKET_POOL *packet_pool_ptr);
This service sets a previously created packet pool as the Telnet Server packet pool if NX_TELNET_SERVER_USER_CREATE_PACKET_POOL is defined. It also requires that NX_TELNET_SERVER_OPTION_DISABLE not be defined such that the Telnet Server needs a packet pool to transmit Telnet options to Telnet clients.
This permits applications to create the packet pool in different memory e.g. no cache memory, than the Telnet Server stack. Note that if this function does not check if the Telnet Server packet pool is already set. If it is called on a non null Telnet Server packet pool pointer, it will overwrite it and replace the existing packet pool with packet pool pointed to by the input pointer.
-
server_ptr: Pointer to Telnet Server control block
-
packet_pool_ptr: Pointer to previously created packet pool
-
NX_SUCCESS: (0x00) Successfully set pool.
-
NX_PTR_ERROR: (0x07) Invalid Server pointer.
status = nx_packet_pool_create(&telnet_server_packet_pool,
"Telnet Server Packet Pool",
telnet_server_pool_area, 600*10);
/* Set the packet pool as the Telnet Server packet pool. */
status = nx_telnet_server_packet_pool_set(&my_server, &telnet_server_packet_pool);
/* If status is NX_SUCCESS the packet pool is set as Telnet Server pool. */
Start a Telnet Server
-
NX_SUCCESS: (0x00) Successfully started.
-
NX_TELNET_NO_PACKET_POOL: (0xF6) No packet pool set
-
NX_PTR_ERROR: (0x07) Invalid Server pointer.
Stop a Telnet Server
-
NX_SUCCESS: (0x00) Successfully stopped
-
NX_PTR_ERROR: (0x07) Invalid Server pointer.
-
NX_CALLER_ERROR: (0x11) Invalid caller of service