Stateless TCP Server
Definition
The concrete server realization of Stateless TCP: a web server whose request handling derives entirely from incoming packet fields, with no socket, connection, or session state retained between packets. Theoretically scales to an arbitrary number of clients, limited only by available bandwidth, at the cost of features that require server-side memory (congestion control, fairness, retransmission tracking).
Sources