summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-12-07 07:56:27 +0100
committerMichael Adam <obnox@samba.org>2009-12-07 22:33:27 +0100
commit34e4be193e9dc07d726dc564289662bc65e40bca (patch)
treea947fe9856f1a71c2d65eed1a7a2f7c46fea3272
parent4b54fc203ffd9fee03a0d0d57932ef929a1876b6 (diff)
downloadtinyproxy-34e4be193e9dc07d726dc564289662bc65e40bca.tar.gz
tinyproxy-34e4be193e9dc07d726dc564289662bc65e40bca.zip
main.h: fix tabs ---> spaces
Michael
-rw-r--r--src/main.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/main.h b/src/main.h
index ed5ea8e..c07482c 100644
--- a/src/main.h
+++ b/src/main.h
@@ -27,8 +27,8 @@
#include "vector.h"
/* Global variables for the main controls of the program */
-#define MAXBUFFSIZE ((size_t)(1024 * 96)) /* Max size of buffer */
-#define MAX_IDLE_TIME (60 * 10) /* 10 minutes of no activity */
+#define MAXBUFFSIZE ((size_t)(1024 * 96)) /* Max size of buffer */
+#define MAX_IDLE_TIME (60 * 10) /* 10 minutes of no activity */
/*
* Hold all the configuration time information.
@@ -90,18 +90,18 @@ struct config_s {
*/
char *statpage;
- vector_t access_list;
+ vector_t access_list;
- /*
- * Store the list of port allowed by CONNECT.
- */
- vector_t connect_ports;
+ /*
+ * Store the list of port allowed by CONNECT.
+ */
+ vector_t connect_ports;
- /*
- * Map of headers which should be let through when the
- * anonymous feature is turned on.
- */
- hashmap_t anonymous_map;
+ /*
+ * Map of headers which should be let through when the
+ * anonymous feature is turned on.
+ */
+ hashmap_t anonymous_map;
};
/* Global Structures used in the program */