Posted by Justin on July 1 2026, 12:01am:
what type are you using for the template? should be uint64_t or whatnot
Posted by Navelpluisje (62.45.65.x) on July 2 2026, 5:01pm:
Looked a bit deeper into it. The size I get by get_config_var is 16. size of uint64_t is 8. Tried to see if there are types with a size of 16, but no success. when not checking the type size I do get the proper valkue as it is in the ini file. Am I missing something here?
Posted by Navelpluisje (62.45.65.x) on July 2 2026, 5:45pm:
Think I found it (with some help of cfillion). With type set to: __uint128_t it is working fine
Posted by Justin on July 2 2026, 11:20pm:
it's an array of uint64_t so you should ideally interpret it as that... it could get changed to a larger number in the future... but whatever works!