summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-server.h
diff options
context:
space:
mode:
authorGravatar m0gg2007-01-25 10:24:10 +0000
committerGravatar m0gg2007-01-25 10:24:10 +0000
commitc1a7b2dabdc691139b744f0d4750f3b797b69073 (patch)
treed9d28d3cceccdecc30dada034c533a1bcc362efa /nanohttp/nanohttp-server.h
parent5a363d9471aaa7ae45f63f7c57c212fcbdb9e3c1 (diff)
downloadcsoap-c1a7b2dabdc691139b744f0d4750f3b797b69073.tar.gz
csoap-c1a7b2dabdc691139b744f0d4750f3b797b69073.tar.bz2
Documentation cleanup
Diffstat (limited to 'nanohttp/nanohttp-server.h')
-rw-r--r--nanohttp/nanohttp-server.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/nanohttp/nanohttp-server.h b/nanohttp/nanohttp-server.h
index 68d61c3..f9fed91 100644
--- a/nanohttp/nanohttp-server.h
+++ b/nanohttp/nanohttp-server.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: nanohttp-server.h,v 1.37 2007/01/03 13:41:52 m0gg Exp $
+ * $Id: nanohttp-server.h,v 1.38 2007/01/25 10:24:10 m0gg Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -42,9 +42,11 @@
*
* nanoHTTP is an embedded HTTP implementation. It comes with the following
* features:
+ * - written in ANSI C (compiles with gcc -ansi)
* - client/server HTTP engine
- * - attachments via MIME
- * - HTTPS support (SSL/TLS) using OpenSSL
+ * - attachments via MIME (http://www.ietf.org/rfc/rfc2045.txt)
+ * - HTTP Basic Authentication (http://www.ietf.org/rfc/rfc2617.txt)
+ * - optional HTTPS support (SSL/TLS) using OpenSSL (http://www.openssl.org)
*
* @section links_sec Howto to use the nanoHTTP library
*
@@ -60,9 +62,6 @@
*
* @version 1.2
*
- * @see http://www.ietf.org/rfc/rfc2616.txt
- * @see http://www.openssl.org
- *
*/
/** @page nanohttp_server_page Howto write an HTTP server