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


Ignore:
Timestamp:
Sep 22, 2024, 10:43:47 PM (8 weeks ago)
Author:
Nishi
Message:

add ShowPort/HidePort

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/config.c

    r61 r123  
    8585        config.root.index_count = 0;
    8686        config.root.readme_count = 0;
     87        config.root.hideport = 0;
    8788        config.vhost_count = 0;
    8889        config.module_count = 0;
     
    186187                                                                current->index_count = 0;
    187188                                                                current->readme_count = 0;
     189                                                                current->hideport = -1;
    188190                                                                int i;
    189191                                                                current->name = cm_strdup(vhost);
     
    217219                                                        config.ports[j] = port;
    218220                                                }
     221                                        } else if(cm_strcaseequ(r[0], "HidePort")) {
     222                                                current->hideport = 1;
     223                                        } else if(cm_strcaseequ(r[0], "ShowPort")) {
     224                                                current->hideport = 0;
    219225                                        } else if(cm_strcaseequ(r[0], "SSLKey")) {
    220226                                                if(r[1] == NULL) {
Note: See TracChangeset for help on using the changeset viewer.