blob: b2aef7b9188a28c5aad762887ddec10c96338008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
*/
/*! \page httpd-example.html
\ingroup network-examples
\title A simple HTTP daemon
This example shows how to use the TQServerSocket class. It is a very
simple implementation of a HTTP daemon that listens on port 8080 and
sends back a simple HTML page back for every GET request it gets. After
sending the page, it closes the connection.
<hr>
Implementation (httpd.cpp):
\include network/httpd/httpd.cpp
*/
|