This repository has been archived on 2023-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
tcpaste/meson_options.txt
Thorsten Schubert 64c89e9274
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone Build encountered an error
Bug fixes
2021-11-08 18:39:10 +01:00

14 lines
1 KiB
Meson

# vi:set ft=meson ts=4 sw=2 noet noai:
option('loglevel', type : 'integer', min : 0, max : 5, value : 3)
option('puid_length', type : 'integer', min : 1, max : 16, value : 3)
option('max_size', type : 'integer', min : 1024, max : 17179869184, value : 67108864, description : 'bytes')
option('path', type : 'string', value : '/var/tmp', description : 'paste output path')
option('min_age', type : 'integer', min : 1, max: 365, value : 1, description : 'days')
option('max_age', type : 'integer', min : 1, max: 365, value : 365, description : 'days')
option('scheme', type : 'combo', choices : ['http://', 'https://'], value : 'https://')
option('domain', type : 'string', value : 'example.org')
option('xattr_sunset', type : 'string', value: 'user.sp.sunset')
option('xattr_uin', type : 'string', value: 'user.sp.puin')
option('addrs_pasted', type : 'array', value : ['[::]:9999'], description : 'listening adress:port pairs')
option('addrs_erased', type : 'array', value : ['[::]:10000'], description : 'listening adress:port pairs')