summaryrefslogtreecommitdiff
path: root/modules/httpd
diff options
context:
space:
mode:
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;