| 129 | Like any other Apache module, HLL modules get their own server and section (directory) configurations. These are PMCs and are stored in the {{{cfg}} member of the modparrot_module_config structure: |
| 130 | {{{ |
| 131 | struct modparrot_module_config |
| 132 | { |
| 133 | char *name; |
| 134 | modparrot_module_info *minfo; |
| 135 | Parrot_PMC cfg; |
| 136 | }; |
| 137 | typedef struct modparrot_module_config modparrot_module_config; |
| 138 | }}} |
| 139 | |
| 140 | This structure is used by Apache as the HLL module's configuration. When configuration is requested by HLL code however, mod_parrot will return the {{{cfg}}} member. |
| 141 | |