style(feuille.c): padding
This commit is contained in:
parent
c2c5440b21
commit
0b7db033c5
1 changed files with 12 additions and 12 deletions
24
feuille.c
24
feuille.c
|
@ -41,20 +41,20 @@ char *argv0;
|
||||||
|
|
||||||
/* default settings */
|
/* default settings */
|
||||||
Settings settings = {
|
Settings settings = {
|
||||||
.address = "0.0.0.0",
|
.address = "0.0.0.0",
|
||||||
.url = "http://localhost",
|
.url = "http://localhost",
|
||||||
.output = "/var/www/feuille",
|
.output = "/var/www/feuille",
|
||||||
.user = "www",
|
.user = "www",
|
||||||
|
|
||||||
.id_length = 4,
|
.id_length = 4,
|
||||||
.worker_count = 4,
|
.worker_count = 4,
|
||||||
.port = 9999,
|
.port = 9999,
|
||||||
.timeout = 2,
|
.timeout = 2,
|
||||||
.max_size = 1048576, /* = 1MiB = 1024 * 1024 */
|
.max_size = 1048576, /* = 1MiB = 1024 * 1024 */
|
||||||
.buffer_size = 131072, /* = 128KiB = 1024 * 128 */
|
.buffer_size = 131072, /* = 128KiB = 1024 * 128 */
|
||||||
|
|
||||||
.verbose = 0,
|
.verbose = 0,
|
||||||
.foreground = 0
|
.foreground = 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/* functions declarations */
|
/* functions declarations */
|
||||||
|
|
Reference in a new issue