I wrote a apache module hook the post_config(function svpn_post_config below) and translate procudure(function svpn_trans_url below).It works fine! But when I run the module with gcov to do the unit test,I find that only the post_config procedure seems to be called.the fact is svpn_trans_url is also called,But I can't see from the gcov result.Anyone known why? some detail info:

  1. Module Makefile:CC =gcc -fprofile-arcs -ftest-coverage -fPIC -DAP_HAVE_DESIGNATED_INITIALIZER -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -pthread -g -shared
  2. I tried to run the httpd in the debug mode."httpd -X -k start -DSSL"
  3. I run the gcov to generate after stop the httpd.

    static int svpn_trans_url(request_rec *r){

    char *filenamestart  = NULL;//NOT RUN######
    char *hostinfo = NULL;//NOT RUN######
    char *origin_url = NULL;//NOT RUN######
    r_easylink_map_t el_info = {0};//NOT RUN######
    int web_proxy_type= TYPE_PROXY_NORMAL;//NOT RUN######
    ....//NOT RUN######
    return DECLINED;//NOT RUN######
    

    }

    static int svpn_post_config(apr_pool_t *p, apr_pool_t *plog,
                                apr_pool_t *ptemp, server_rec *s)
       7    {
       7        static int _init = 0;
       7        int ret = 0;
       7        if(p == NULL)
        {
    

    ......

       7        return OK;
    }
    
    static void svpn_web_register_hooks(apr_pool_t *p)
       7    {
       7        static const char *const aszNext[] = { "mod_proxy.c", NULL};
        /**to register filter */
            ...
       7        ap_hook_translate_name(svpn_trans_url, NULL,aszNext,  APR_HOOK_FIRST);  
       7        sv_recover_filter_handle = ap_register_output_filter("svpn_websvc_recover_code", sv_recover_code_filter, NULL,AP_FTYPE_RESOURCE);       
        ...
       7        ap_hook_post_config(svpn_post_config, NULL, NULL, APR_HOOK_MIDDLE);
    
    }
    
    
    /**Dispatch list for API hooks */
    module AP_MODULE_DECLARE_DATA svpn_web_module = {
        STANDARD20_MODULE_STUFF, 
        NULL,                  /**create per-dir    config structures */
        NULL,                  /**merge  per-dir    config structures */
        NULL,                  /**create per-server config structures */
        NULL,                  /**merge  per-server config structures */
        NULL,                  /**table of config file commands       */
        svpn_web_register_hooks  /**register hooks                      */
    };
    
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.