ggPeti
ggPeti

Reputation: 875

What is 'module' in the Apache2 source code?

Take this line for example from mod_lbmethod_bybusyness.c:

module AP_MODULE_DECLARE_DATA lbmethod_bybusyness_module;

I don't know of a module keyword in C, what is this?

Upvotes: 0

Views: 45

Answers (1)

blatinox
blatinox

Reputation: 843

There is no module keyword in C. It seems to be a typedef made in the projet (see http_config.h).

Upvotes: 2

Related Questions