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 */
|
||||
Settings settings = {
|
||||
.address = "0.0.0.0",
|
||||
.url = "http://localhost",
|
||||
.output = "/var/www/feuille",
|
||||
.user = "www",
|
||||
.address = "0.0.0.0",
|
||||
.url = "http://localhost",
|
||||
.output = "/var/www/feuille",
|
||||
.user = "www",
|
||||
|
||||
.id_length = 4,
|
||||
.worker_count = 4,
|
||||
.port = 9999,
|
||||
.timeout = 2,
|
||||
.max_size = 1048576, /* = 1MiB = 1024 * 1024 */
|
||||
.buffer_size = 131072, /* = 128KiB = 1024 * 128 */
|
||||
.id_length = 4,
|
||||
.worker_count = 4,
|
||||
.port = 9999,
|
||||
.timeout = 2,
|
||||
.max_size = 1048576, /* = 1MiB = 1024 * 1024 */
|
||||
.buffer_size = 131072, /* = 128KiB = 1024 * 128 */
|
||||
|
||||
.verbose = 0,
|
||||
.foreground = 0
|
||||
.verbose = 0,
|
||||
.foreground = 0
|
||||
};
|
||||
|
||||
/* functions declarations */
|
||||
|
|
Reference in a new issue