From: Alan T. DeKok Date: Mon, 11 Apr 2022 12:41:04 +0000 (-0400) Subject: add more structs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb5faa250a1dde0687bb7ea57c0cbcd2a4a0ecac;p=thirdparty%2Ffreeradius-server.git add more structs --- diff --git a/src/bin/radsizes.c b/src/bin/radsizes.c index 8e3693c582c..af24ce8363d 100644 --- a/src/bin/radsizes.c +++ b/src/bin/radsizes.c @@ -4,14 +4,22 @@ #include #include #include +#include int main(UNUSED int argc, UNUSED char **argv) { #define SIZEOF(_struct) printf("%-24s\t%zu bytes\n", STRINGIFY(_struct), sizeof(_struct)) + SIZEOF(fr_dlist_t); + SIZEOF(fr_dlist_head_t); + SIZEOF(fr_pair_t); SIZEOF(fr_pair_list_t); SIZEOF(fr_rb_node_t); + + SIZEOF(fr_tlist_t); + SIZEOF(fr_tlist_head_t); + SIZEOF(fr_value_box_t); SIZEOF(tmpl_t);