Copyright © 2011 VoIP Embedded, Inc.
Revision History | |
---|---|
Revision $Revision: 8101 $ | $Date: 2011-06-30 17:22:35 +0200 (Thu, 30 Jun 2011) $ |
Table of Contents
List of Examples
UAC AUTH (User Agent Client Authentication) module provides a common API for building authentication headers.
It also provides a common set of authentication credetials to be used by other modules.
Known limitations in this version:
authentication does not support qop auth-int, just qop auth;
Contains a multiple definition of credentials used to perform authentication.
NOTE that the password can be provided as a plain text password or as a precalculated HA1 as a hexa (lower case) string (of 32 chars) prefixed with "0x" (so a total of 34 chars).
This parameter is required if UAC authentication is used.
Example 1.1. Set credential
parameter
... modparam("uac_auth","credential","username:domain:password") modparam("uac_auth","credential","username:domain:0xc17ba8157756f263d07e158504204629") ...