Where is the definition of `struct ap_conf_vector_t`?

Where is the definition struct ap_conf_vector_tin Apache sources? Is it generated where?

+5
source share
1 answer

ap_conf_vector_t seems to be an opaque data type. This is usually used in the old days to define a stable api, which can subsequently change the implementation without changing the api.

ap_conf_vector_t is used only as a parameter for api functions, such as:

  • ap_get_module_config
  • ap_parse_htaccess

You should not directly manipulate members of this structure. As an OO programming, you can only use the provided functions.

+5
source

All Articles