I'm writing some apache (2.2) modules in C and I'm pretty new at it, so I was wondering:

I need to know if it's possible to create a global variable that will be initiated whenever the apache server starts to run.

See, I need to have a list of host names (that will be "privileged"), so that every request I get, I need to check if the host name appears in the list (to check if it's "previleged").

So the list should be global (so that every server instance will have the same instance of the list), and I need to initialize it at the beginning.

How do I do that, if it's at all possible?

Thanks!

link|improve this question

60% accept rate
Is the list static, or is it loaded from some external source? – larsmans Jun 13 '11 at 11:34
I would like the list to be loaded from a simple text file when it is initiated. – user795810 Jun 13 '11 at 12:02
feedback

1 Answer

up vote 0 down vote accepted

Although not a complete answer, I did manage to find a way to have global variables.

I used the apr_pool_userdata_get and apr_pool_userdata_set methods with the process's global pools (pconf and pool).

For further reference:
http://apr.apache.org/docs/apr/0.9/group_apr_pools.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.