summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authordarix <darix@152afb58-edef-0310-8abb-c4023f1b3aa9>2006-03-31 17:35:28 +0000
committerdarix <darix@152afb58-edef-0310-8abb-c4023f1b3aa9>2006-03-31 17:35:28 +0000
commit0426645a0395ec527303759ccde0532f8f8904f2 (patch)
tree303459a60ad91ff7075b5170b71e5537e3c96708 /src/settings.h
parentb8e4ba5a6d924de6cb73c3e6ad3e2ebb2cdf0c79 (diff)
downloadlighttpd-0426645a0395ec527303759ccde0532f8f8904f2.tar.gz
- remove all trailing whitespaces in the c files
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@1071 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/settings.h b/src/settings.h
index f0c63546..349fc200 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -9,24 +9,24 @@
/**
* max size of a buffer which will just be reset
* to ->used = 0 instead of really freeing the buffer
- *
+ *
* 64kB (no real reason, just a guess)
*/
#define BUFFER_MAX_REUSE_SIZE (4 * 1024)
/**
* max size of the HTTP request header
- *
+ *
* 32k should be enough for everything (just a guess)
- *
+ *
*/
#define MAX_HTTP_REQUEST_HEADER (32 * 1024)
-typedef enum { HANDLER_UNSET,
- HANDLER_GO_ON,
+typedef enum { HANDLER_UNSET,
+ HANDLER_GO_ON,
HANDLER_FINISHED,
- HANDLER_COMEBACK,
- HANDLER_WAIT_FOR_EVENT,
+ HANDLER_COMEBACK,
+ HANDLER_WAIT_FOR_EVENT,
HANDLER_ERROR,
HANDLER_WAIT_FOR_FD
} handler_t;