| author | "Tomas Zeman <tzeman@volny.cz>" |
| Wed, 16 Jan 2008 22:39:43 +0100 | |
| changeset 0 | 6f7a81934006 |
| permissions | -rw-r--r-- |
| 0 | 1 |
#include "configio.h" |
2 |
#include <limits.h> |
|
3 |
||
4 |
static unsigned default_default_msgsize(UINT_MAX); |
|
5 |
static const mystring filename_default_msgsize = "default-msgsize"; |
|
6 |
unsigned configuration::default_msgsize() const {
|
|
7 |
return read_uns(filename_default_msgsize, |
|
8 |
default_default_msgsize, |
|
9 |
(config_cache<unsigned>&)default_msgsize_cache); |
|
10 |
} |