Changeset 695


Ignore:
Timestamp:
Sep 9, 2006 1:23:09 PM (18 years ago)
Author:
bennylp
Message:

Fix compilation error when PJSIP_AUTH_HEADER_CACHING and PJSIP_AUTH_AUTO_SEND_NEXT is disabled, and set the default for both to disabled. Also fixed the error message in pjsua when invalid arguments are specified.

Location:
pjproject/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/config_site_sample.h

    r667 r695  
    7979 
    8080#   define PJSUA_MAX_CALLS              512 
     81#   define PJSIP_AUTH_HEADER_CACHING    1 
     82#   define PJSIP_AUTH_AUTO_SEND_NEXT    1 
     83 
    8184#endif 
    8285 
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c

    r685 r695  
    716716        default: 
    717717            PJ_LOG(1,(THIS_FILE,  
    718                       "Argument \"--%s\" is not valid. Use --help to see help", 
    719                       long_options[option_index].name)); 
     718                      "Argument \"%s\" is not valid. Use --help to see help", 
     719                      argv[pj_optind-1])); 
    720720            return -1; 
    721721        } 
  • pjproject/trunk/pjsip/include/pjsip/sip_auth.h

    r622 r695  
    118118    pj_str_t                     cnonce;    /**< Cnonce value.              */ 
    119119#endif 
    120 #if PJSIP_AUTH_AUTO_SEND_NEXT 
    121120    pjsip_www_authenticate_hdr  *last_chal; /**< Last challenge seen.       */ 
    122 #endif 
    123121#if PJSIP_AUTH_HEADER_CACHING 
    124122    pjsip_cached_auth_hdr        cached_hdr;/**< List of cached header for 
  • pjproject/trunk/pjsip/include/pjsip/sip_config.h

    r617 r695  
    290290 */ 
    291291#if !defined(PJSIP_AUTH_HEADER_CACHING) 
    292 #   define PJSIP_AUTH_HEADER_CACHING        1 
     292#   define PJSIP_AUTH_HEADER_CACHING        0 
    293293#endif 
    294294 
     
    311311 */ 
    312312#if !defined(PJSIP_AUTH_AUTO_SEND_NEXT) 
    313 #   define PJSIP_AUTH_AUTO_SEND_NEXT        1 
     313#   define PJSIP_AUTH_AUTO_SEND_NEXT        0 
    314314#endif 
    315315 
Note: See TracChangeset for help on using the changeset viewer.