58 |
60 |
59 return conf; |
61 return conf; |
60 } |
62 } |
61 |
63 |
62 void free_keyfile_config(KeyfileConfig *conf) { |
64 void free_keyfile_config(KeyfileConfig *conf) { |
63 /* |
65 cxMempoolDestroy(conf->parser.mp); |
64 if(conf->users) { |
|
65 ucx_list_free_a(conf->parser.mp, conf->users); |
|
66 } |
|
67 ucx_mempool_destroy(conf->parser.mp->pool); |
|
68 */ |
|
69 free(conf->file); |
66 free(conf->file); |
70 free(conf); |
67 free(conf); |
71 } |
68 } |
72 |
69 |
73 int keyfile_parse(void *p, ConfigLine *begin, ConfigLine *end, cxmutstr line) { |
70 int keyfile_parse(void *p, ConfigLine *begin, ConfigLine *end, cxmutstr line) { |
74 KeyfileConfig *conf = p; |
71 KeyfileConfig *conf = p; |
75 CxAllocator *mp = conf->parser.mp; |
72 CxAllocator *mp = conf->parser.a; |
76 |
73 |
77 cxstring *tk = NULL; |
74 cxstring *tk = NULL; |
78 ssize_t tkn = cx_strsplit_a(mp, cx_strcast(line), cx_strn(";", 1), KEYFILE_MAX_TOKENS, &tk); |
75 ssize_t tkn = cx_strsplit_a(mp, cx_strcast(line), cx_strn(";", 1), KEYFILE_MAX_TOKENS, &tk); |
79 |
76 |
80 if(tkn < 2) { |
77 if(tkn < 2) { |