34 template <Scale N = Scale::Small>
struct Limits ;
36 template <Scale N = Scale::Normal>
struct Limits ;
38 template <>
struct Limits<Scale::Normal> ;
39 template <> struct Limits<Scale::Small> ;
54 static constexpr bool is_small = false ;
55 static constexpr int log = 1000 ;
56 static constexpr int path_buffer = 1024 ;
57 static constexpr int file_buffer = 8192 ;
58 static constexpr int net_buffer = 20000 ;
59 static constexpr int net_listen_queue = 31 ;
60 static constexpr int net_file_limit = 200000000 ;
67 static constexpr bool is_small = true ;
68 static constexpr int log = 120 ;
69 static constexpr int path_buffer = 64 ;
70 static constexpr int file_buffer = 4096 ;
71 static constexpr int net_buffer = 4096 ;
72 static constexpr int net_listen_queue = 3 ;
73 static constexpr int net_file_limit = 10000000 ;
A set of compile-time buffer sizes.