C
void GenericTCPServer();
Description
This function implements a simple TCP server. The function is invoked periodically by the stack to listen for incoming connections. When a connection is made, the server reads all incoming data, transforms it to uppercase, and echos it back.
This example can be used as a model for many TCP server applications.
Preconditions
TCP is initialized.
Returns
None
Module