main.h: fix tabs ---> spaces
Michael
This commit is contained in:
parent
4b54fc203f
commit
34e4be193e
24
src/main.h
24
src/main.h
@ -27,8 +27,8 @@
|
|||||||
#include "vector.h"
|
#include "vector.h"
|
||||||
|
|
||||||
/* Global variables for the main controls of the program */
|
/* Global variables for the main controls of the program */
|
||||||
#define MAXBUFFSIZE ((size_t)(1024 * 96)) /* Max size of buffer */
|
#define MAXBUFFSIZE ((size_t)(1024 * 96)) /* Max size of buffer */
|
||||||
#define MAX_IDLE_TIME (60 * 10) /* 10 minutes of no activity */
|
#define MAX_IDLE_TIME (60 * 10) /* 10 minutes of no activity */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Hold all the configuration time information.
|
* Hold all the configuration time information.
|
||||||
@ -90,18 +90,18 @@ struct config_s {
|
|||||||
*/
|
*/
|
||||||
char *statpage;
|
char *statpage;
|
||||||
|
|
||||||
vector_t access_list;
|
vector_t access_list;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Store the list of port allowed by CONNECT.
|
* Store the list of port allowed by CONNECT.
|
||||||
*/
|
*/
|
||||||
vector_t connect_ports;
|
vector_t connect_ports;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Map of headers which should be let through when the
|
* Map of headers which should be let through when the
|
||||||
* anonymous feature is turned on.
|
* anonymous feature is turned on.
|
||||||
*/
|
*/
|
||||||
hashmap_t anonymous_map;
|
hashmap_t anonymous_map;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Global Structures used in the program */
|
/* Global Structures used in the program */
|
||||||
|
Loading…
Reference in New Issue
Block a user