$FreeBSD$ --- modules/auth/doc/auth_user.sgml +++ modules/auth/doc/auth_user.sgml @@ -33,7 +33,10 @@ must be loaded before this module): - sl -- Stateless replies + sl -- Stateless replies (if use_tm is 0) + + + tm -- Transaction module (if use_tm is 1) @@ -103,6 +106,26 @@ rpid_suffix modparam("auth", "rpid_suffix", "@1.2.3.4>") + + + +
+ <varname>use_tm</varname> (integer) + + If set to 1 then the auth will use t_reply() function from + the tm module instead of sl_send_reply() function from the + sl module for sending replies. This allows challenge responses to be processes + statefully if necessary. When set to 1 script writer need to ensure that transaction + exists when www_challenge() or proxy_challenge() + is called, usually by calling t_newtran(). + + + Default value is 0. + + + use_tm example + +modparam("auth", "use_tm", 1)