summaryrefslogtreecommitdiff
path: root/modules/httpd
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2015-06-19 22:16:09 +0200
committerAlfred E. Heggestad <aeh@db.org>2015-06-19 22:16:09 +0200
commit92f52bf6180f03d0d148cd4db15e07dfb97a5d53 (patch)
tree97e1419735b695f80aef09b564a96488eec8201f /modules/httpd
parent664089792dd38fcaff3e8b2ca9bd727d1ed79123 (diff)
module: add some more docs
Diffstat (limited to 'modules/httpd')
-rw-r--r--modules/httpd/httpd.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/modules/httpd/httpd.c b/modules/httpd/httpd.c
index 3d21203..fcf7d9e 100644
--- a/modules/httpd/httpd.c
+++ b/modules/httpd/httpd.c
@@ -1,12 +1,27 @@
/**
* @file httpd.c Webserver UI module
*
- * Copyright (C) 2010 Creytiv.com
+ * Copyright (C) 2010 - 2015 Creytiv.com
*/
#include <re.h>
#include <baresip.h>
+/**
+ * @defgroup httpd httpd
+ *
+ * HTTP Server module for the User-Interface
+ *
+ * Open your favourite web browser and point it to http://127.0.0.1:8000/
+ *
+ * Example URLs:
+ \verbatim
+ http://127.0.0.1:8000?h -- Print the Help menu
+ http://127.0.0.1:8000?d1234@target.com -- Make an outgoing call
+ \endverbatim
+ */
+
+
static struct http_sock *httpsock;