Where is the definition of the struct ap_conf_vector_t in Apache sources? Is it generated, where?
Where is the definition of the struct ap_conf_vector_t in Apache sources? Is it generated,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ap_conf_vector_t seems to be an opaque datatype. This is usually used in the old days to define a stable api which the possibility to later change the implementation without changes to the api.
ap_conf_vector_t is only used as a parameter to the api functions like:
You are not supposed to manipulate the members of this structure directly. Kind of OO programming, you only can use the supplied functions.