summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-server.h
diff options
context:
space:
mode:
authorGravatar m0gg2007-01-01 22:54:46 +0000
committerGravatar m0gg2007-01-01 22:54:46 +0000
commit5502aff768e5cbc3bbd05e067bc0dfc456770f86 (patch)
tree090bf72c90a77c9c931f6bdc26cfbcb3f14ebaa7 /nanohttp/nanohttp-server.h
parent23629635c0d544c4fbbc0bd5d01dd75413942a3f (diff)
downloadcsoap-5502aff768e5cbc3bbd05e067bc0dfc456770f86.tar.gz
csoap-5502aff768e5cbc3bbd05e067bc0dfc456770f86.tar.bz2
Header parsing error solved
Diffstat (limited to 'nanohttp/nanohttp-server.h')
-rw-r--r--nanohttp/nanohttp-server.h33
1 files changed, 21 insertions, 12 deletions
diff --git a/nanohttp/nanohttp-server.h b/nanohttp/nanohttp-server.h
index 53eb4a8..71c0370 100644
--- a/nanohttp/nanohttp-server.h
+++ b/nanohttp/nanohttp-server.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: nanohttp-server.h,v 1.35 2007/01/01 18:58:05 m0gg Exp $
+ * $Id: nanohttp-server.h,v 1.36 2007/01/01 22:54:46 m0gg Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -360,39 +360,48 @@ extern herror_t httpd_mime_end(httpd_conn_t * conn);
/**
*
- * Send a minimalistic HTML error document with HTTP status 500.
+ * Send a minimalistic HTML error document with HTTP status 400.
*
- * @see HTTP_STATUS_500_REASON_PHRASE
+ * @see HTTP_STATUS_400_REASON_PHRASE
*
*/
-extern herror_t httpd_send_internal_error(httpd_conn_t * conn, const char *msg);
+extern herror_t httpd_send_bad_request(httpd_conn_t *conn, const char *msg);
/**
*
- * Send a minimalistic HTML error document with HTTP status 501.
+ * Send a minimalistc HTML error document with HTTP status 401.
*
- * @see HTTP_STATUS_501_REASON_PHRASE
+ * @see HTTP_STATUS_401_REASON_PHRASE
*
*/
-extern herror_t httpd_send_not_implemented(httpd_conn_t *conn, const char *msg);
+extern herror_t httpd_send_unauthorized(httpd_conn_t *conn, const char *realm);
/**
*
* Send a minimalistic HTML error document with HTTP status 404.
*
- * @see HTTP_STATUS_401_REASON_PHRASE
+ * @see HTTP_STATUS_404_REASON_PHRASE
*
*/
-extern herror_t httpd_send_bad_request(httpd_conn_t *conn, const char *msg);
+extern herror_t httpd_send_not_found(httpd_conn_t *conn, const char *msg);
/**
*
- * Send a minimalistc HTML error document with HTTP status 401.
+ * Send a minimalistic HTML error document with HTTP status 500.
*
- * @see HTTP_STATUS_404_REASON_PHRASE
+ * @see HTTP_STATUS_500_REASON_PHRASE
*
*/
-extern herror_t httpd_send_unauthorized(httpd_conn_t *conn, const char *realm);
+extern herror_t httpd_send_internal_error(httpd_conn_t * conn, const char *msg);
+
+/**
+ *
+ * Send a minimalistic HTML error document with HTTP status 501.
+ *
+ * @see HTTP_STATUS_501_REASON_PHRASE
+ *
+ */
+extern herror_t httpd_send_not_implemented(httpd_conn_t *conn, const char *msg);
#ifdef __cplusplus
}