Changeset 18 in Main for trunk/Server/config.c


Ignore:
Timestamp:
Sep 14, 2024, 9:42:40 AM (2 months ago)
Author:
Nishi
Message:

can return response now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/config.c

    r17 r18  
    3939        config.root.sslcert = NULL;
    4040        config.vhost_count = 0;
     41        config.module_count = 0;
     42        config.extension = NULL;
    4143        config.server_root = cm_strdup(PREFIX);
    4244        gethostname(config.hostname, 1024);
     
    140142                                                        void* mod = tw_module_load(r[i]);
    141143                                                        if(mod != NULL) {
     144                                                                config.modules[config.module_count++] = mod;
    142145                                                                if(tw_module_init(mod) != 0) {
    143146                                                                        stop = 1;
Note: See TracChangeset for help on using the changeset viewer.