From: Russell Bryant Date: Sun, 26 Mar 2006 16:48:47 +0000 (+0000) Subject: fix asterisk header include format and add the doxygen header X-Git-Tag: 1.4.0-beta1~2324 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=813ab1aff0af687e12e034116efae2d67d17e7b0;p=thirdparty%2Fasterisk.git fix asterisk header include format and add the doxygen header git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15024 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/http.c b/http.c index c840464f65..fca0763277 100644 --- a/http.c +++ b/http.c @@ -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 #include #include @@ -30,17 +38,15 @@ #include #include #include -#include -#include -#include -#include + +#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; int fd;