summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO5
-rw-r--r--common/buffer.c3
-rw-r--r--common/compat.h1
3 files changed, 6 insertions, 3 deletions
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..7bbedb3
--- /dev/null
+++ b/TODO
@@ -0,0 +1,5 @@
+
+mod_httpauth
+- Access control (groups etc..)?
+- Proxy Authentication
+
diff --git a/common/buffer.c b/common/buffer.c
index 096fac8..2218b49 100644
--- a/common/buffer.c
+++ b/common/buffer.c
@@ -14,8 +14,7 @@
#define BUF_IN_JOIN(b) (!BUF_IS_EMPTY(b) && *((b)->_rp - 1) != 0)
#define BUF_NEW_BLOCK(b) ((b)->_pp = (b)->_rp)
-/* TODO: Increase this size to 2048 once we're done debugging */
-#define BUF_INITIAL 80
+#define BUF_INITIAL 2048
#define BUF_DELTA 16
#define INTERNAL_DATA(intl) ((void*)(((unsigned char*)(intl)) + sizeof(*(intl))))
diff --git a/common/compat.h b/common/compat.h
index c292652..ce50e54 100644
--- a/common/compat.h
+++ b/common/compat.h
@@ -28,7 +28,6 @@ void* reallocf(void* p, size_t sz);
#include <pthread.h>
-/* TODO: Move this logic to configure */
#if HAVE_ERR_MUTEX == 1
# define HA_MUTEX_TYPE PTHREAD_MUTEX_ERRORCHECK_NP
#else