40 static constexpr int log = 1000 ;
41 static constexpr int path_buffer = 1024 ;
42 static constexpr int file_buffer = 102400 ;
43 static constexpr int file_slurp = 100000000 ;
44 static constexpr int pipe_buffer = 4096 ;
45 static constexpr int net_buffer = 20000 ;
46 static constexpr int net_file_limit = 200000000 ;
47 static constexpr int net_listen_queue = 31 ;
49 static constexpr int log = 120 ;
50 static constexpr int path_buffer = 64 ;
51 static constexpr int file_buffer = 128 ;
52 static constexpr int file_slurp = 10000000 ;
53 static constexpr int pipe_buffer = 128 ;
54 static constexpr int net_buffer = 512 ;
55 static constexpr int net_file_limit = 10000000 ;
56 static constexpr int net_listen_queue = 3 ;
A scoping structure for a set of buffer sizes.