[asterisk-commits] trunk r15024 - /trunk/http.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sun Mar 26 09:48:48 MST 2006


Author: russell
Date: Sun Mar 26 10:48:47 2006
New Revision: 15024

URL: http://svn.digium.com/view/asterisk?rev=15024&view=rev
Log:
fix asterisk header include format and add the doxygen header

Modified:
    trunk/http.c

Modified: trunk/http.c
URL: http://svn.digium.com/view/asterisk/trunk/http.c?rev=15024&r1=15023&r2=15024&view=diff
==============================================================================
--- trunk/http.c (original)
+++ trunk/http.c Sun Mar 26 10:48:47 2006
@@ -16,6 +16,14 @@
  * at the top of the source tree.
  */
 
+/*!
+ * \file 
+ * \brief http server
+ *
+ * This program implements a tiny http server supporting the "get" method
+ * only and was inspired by micro-httpd by Jef Poskanzer 
+ */
+
 #include <sys/types.h>
 #include <stdio.h>
 #include <unistd.h>
@@ -30,16 +38,14 @@
 #include <errno.h>
 #include <fcntl.h>
 #include <pthread.h>
-#include <asterisk/cli.h>
-#include <asterisk/http.h>
-#include <asterisk/utils.h>
-#include <asterisk/strings.h>
+
+#include "asterisk/cli.h"
+#include "asterisk/http.h"
+#include "asterisk/utils.h"
+#include "asterisk/strings.h"
 
 #define MAX_PREFIX 80
 #define DEFAULT_PREFIX "asterisk"
-
-/* This program implements a tiny http server supporting the "get" method
-   only and was inspired by micro-httpd by Jef Poskanzer */
 
 struct ast_http_server_instance {
 	FILE *f;



More information about the asterisk-commits mailing list