summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-mime.h
diff options
context:
space:
mode:
authorGravatar m0gg2007-11-03 22:40:09 +0000
committerGravatar m0gg2007-11-03 22:40:09 +0000
commit8a6946b18003fae6400a137389f0cb13d0ac4bd6 (patch)
tree1fb0e6f58de5596f8dae00998da18472fb4952a1 /nanohttp/nanohttp-mime.h
parentc1a7b2dabdc691139b744f0d4750f3b797b69073 (diff)
downloadcsoap-8a6946b18003fae6400a137389f0cb13d0ac4bd6.tar.gz
csoap-8a6946b18003fae6400a137389f0cb13d0ac4bd6.tar.bz2
Split nanoHTTP and cSOAP logging
Diffstat (limited to 'nanohttp/nanohttp-mime.h')
-rwxr-xr-xnanohttp/nanohttp-mime.h25
1 files changed, 16 insertions, 9 deletions
diff --git a/nanohttp/nanohttp-mime.h b/nanohttp/nanohttp-mime.h
index 5ec1489..592559f 100755
--- a/nanohttp/nanohttp-mime.h
+++ b/nanohttp/nanohttp-mime.h
@@ -3,7 +3,7 @@
* | \/ | | | | \/ | | _/
* |_''_| |_| |_''_| |_'/ PARSER
*
-* $Id: nanohttp-mime.h,v 1.17 2007/01/03 08:33:44 m0gg Exp $
+* $Id: nanohttp-mime.h,v 1.18 2007/11/03 22:40:11 m0gg Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003-2004 Ferhat Ayaz
@@ -74,39 +74,46 @@
* @subsection nanohttp_mime_server_cleanup_sec Server cleanup
*
* @author Ferhat Ayaz
- * @version $Revision: 1.17 $
+ * @version $Revision: 1.18 $
*
* @see http://www.ietf.org/rfc/rfc2045.txt
* @see http://www.ietf.org/rfc/rfc2046.txt
* @see http://www.ietf.org/rfc/rfc4288.txt
* @see http://www.ietf.org/rfc/rfc4289.txt
- *
*/
-/**
+/** @file nanohttp-mime.h MIME handling
*
- * MIME errors
+ * @defgroup NANOHTTP_MIME MIME handling
+ * @ingroup NANOHTTP
*
*/
+/**@{*/
+
+/** @defgroup NANOHTTP_MIME_ERRORS MIME errors
+ */
+/**@{*/
#define MIME_ERROR 1300
#define MIME_ERROR_NO_BOUNDARY_PARAM (MIME_ERROR + 1)
#define MIME_ERROR_NO_START_PARAM (MIME_ERROR + 2)
#define MIME_ERROR_PARSE_ERROR (MIME_ERROR + 3)
#define MIME_ERROR_NO_ROOT_PART (MIME_ERROR + 4)
#define MIME_ERROR_NOT_MIME_MESSAGE (MIME_ERROR + 5)
+/**@}*/
#ifdef __cplusplus
extern "C" {
#endif
-/* ------------------------------------------------------------------
- "multipart/related" MIME Message Builder
- ------------------------------------------------------------------*/
-
+/** "multipart/related" MIME Message Builder
+ *
+ */
extern herror_t mime_get_attachments(content_type_t * ctype, struct http_input_stream_t * in, struct attachments_t ** dest);
#ifdef __cplusplus
}
#endif
+/**@}*/
+
#endif