61 |
61 |
62 return conf; |
62 return conf; |
63 } |
63 } |
64 |
64 |
65 void free_mime_config(MimeConfig *conf) { |
65 void free_mime_config(MimeConfig *conf) { |
66 cxMempoolDestroy(conf->parser.mp->data); // TODO: is there a better way to access the mempool? |
66 cxMempoolDestroy(conf->parser.a->data); // TODO: is there a better way to access the mempool? |
67 free(conf); |
67 free(conf); |
68 } |
68 } |
69 |
69 |
70 int mimeconf_parse(void *p, ConfigLine *begin, ConfigLine *end, cxmutstr line) { |
70 int mimeconf_parse(void *p, ConfigLine *begin, ConfigLine *end, cxmutstr line) { |
71 MimeConfig *conf = p; |
71 MimeConfig *conf = p; |
72 CxAllocator *mp = conf->parser.mp; |
72 CxAllocator *mp = conf->parser.a; |
73 |
73 |
74 // parse mime directive |
74 // parse mime directive |
75 MimeDirective *dir = OBJ_NEW_N(mp, MimeDirective); |
75 MimeDirective *dir = OBJ_NEW_N(mp, MimeDirective); |
76 |
76 |
77 ConfigParam *params = cfg_param_list(line, mp); |
77 ConfigParam *params = cfg_param_list(line, mp); |