summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-server.h
diff options
context:
space:
mode:
authorGravatar m0gg2006-12-11 08:13:19 +0000
committerGravatar m0gg2006-12-11 08:13:19 +0000
commit68c054a21ddf6f630e3803de0b25ea97e425c0ad (patch)
tree1ba78dc49c654e2e6371884cd6cc82a8da238039 /nanohttp/nanohttp-server.h
parentf4c29af542bbded2fe36d9bdc80808c3a7f5d92b (diff)
downloadcsoap-68c054a21ddf6f630e3803de0b25ea97e425c0ad.tar.gz
csoap-68c054a21ddf6f630e3803de0b25ea97e425c0ad.tar.bz2
Documentation fixup
Diffstat (limited to 'nanohttp/nanohttp-server.h')
-rw-r--r--nanohttp/nanohttp-server.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/nanohttp/nanohttp-server.h b/nanohttp/nanohttp-server.h
index 4205900..eb1f178 100644
--- a/nanohttp/nanohttp-server.h
+++ b/nanohttp/nanohttp-server.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: nanohttp-server.h,v 1.30 2006/12/10 19:21:07 m0gg Exp $
+ * $Id: nanohttp-server.h,v 1.31 2006/12/11 08:13:19 m0gg Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -38,7 +38,7 @@
*
* @page nanohttp_page nanoHTTP
*
- * \section nanohttp_sec nanoHTTP
+ * @section nanohttp_sec nanoHTTP
*
* nanoHTTP is an embedded HTTP implementation. It comes with the following
* features:
@@ -46,11 +46,11 @@
* - attachments via MIME
* - HTTPS support (SSL/TLS) using OpenSSL
*
- * \section links_sec Howto to the nanoHTTP library
+ * @section links_sec Howto to the nanoHTTP library
*
- * - \ref nanohttp_client_page
- * - \ref nanohttp_server_page
- * - \ref nanohttp_mime_page
+ * - @ref nanohttp_client_page
+ * - @ref nanohttp_server_page
+ * - @ref nanohttp_mime_page
*
* @author Ferhat Ayaz
* @author Michael Rans
@@ -66,15 +66,15 @@
/** @page nanohttp_server_page Howto write an HTTP server
*
- * \section server_sec Table of contents
+ * @section server_sec Table of contents
*
- * - \ref init_sec
- * - \ref service_sec
- * - \ref running_sec
- * - \ref cleanup_sec
- * - \ref function_sec
+ * - @ref init_sec
+ * - @ref service_sec
+ * - @ref running_sec
+ * - @ref cleanup_sec
+ * - @ref function_sec
*
- * \section init_sec Server initialization
+ * @section init_sec Server initialization
*
* @code
* int main(int argc, char **argv)
@@ -89,7 +89,7 @@
* }
* @endcode
*
- * \section service_sec Service registration
+ * @section service_sec Service registration
*
* @code
* if ((status = httpd_register("/", root_service)) != H_OK)
@@ -131,7 +131,7 @@
* }
* @endcode
*
- * \section running_sec Running the server
+ * @section running_sec Running the server
*
* @code
* if ((status = httpd_run()) != H_OK)
@@ -143,7 +143,7 @@
* }
* @endcode
*
- * \section cleanup_sec Server cleanup
+ * @section cleanup_sec Server cleanup
*
* @code
* httpd_destroy();
@@ -152,7 +152,7 @@
* }
* @endcode
*
- * \section function_seq Sample service function
+ * @section function_seq Sample service function
*
* @code
* static void headers_service(httpd_conn_t *conn, struct hrequest_t *req)
@@ -191,7 +191,7 @@
/**
*
- * nanohttp command line flags
+ * nanoHTTP command line flags
*
*/
#define NHTTPD_ARG_PORT "-NHTTPport"