~ubuntu-branches/ubuntu/dapper/freeradius/dapper-updates

« back to all changes in this revision

Viewing changes to src/modules/rlm_sql/conf.h

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2004-12-29 20:19:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041229201942-uj2e95la965uthc7
Tags: 1.0.1-2
* freeradius-dialupadmin Suggests php4-mysql | php4-pgsql
   Closes: #279419
* Added a two-second pause to restart in init.d script
   Closes: #262635
* FreeRADIUS module packages now depend on the same source
  version of the main FreeRADIUS package.
   Closes: #284353
* FreeRADIUS-dialupadmin's default paths in admin.conf are
  now correct.
   Closes: #280942
* FreeRADIUS-dialupadmin's help.php3 can now find README.
   Closes: #280941
* Fixes stolen from 1.0.2 CVS:
  - Bug fix to make udpfromto code work
  - radrelay shouldn't dump core if it can't read a VP from the
    detail file.
  - Only initialize the random pool once.
  - In rlm_sql, don't escape characters twice.
  - In rlm_ldap, only claim Auth-Type if a plain text password is present.
  - Locking fixes in threading code
  - Fix building on gcc-4.0 by not trying to access static auth_port from
    other files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        char   *authorize_group_reply_query;
33
33
        char   *accounting_onoff_query;
34
34
        char   *accounting_update_query;
 
35
        char   *accounting_update_query_alt;
35
36
        char   *accounting_start_query;
36
37
        char   *accounting_start_query_alt;
37
38
        char   *accounting_stop_query;
40
41
        char   *simul_verify_query;
41
42
        char   *groupmemb_query;
42
43
        int     sqltrace;
 
44
        int     do_clients;
43
45
        char   *tracefile;
44
46
        char   *xlat_name;
45
47
        int     deletestalesessions;
46
48
        int     num_sql_socks;
47
49
        int     connect_failure_retry_delay;
48
50
        int     query_on_not_found;
 
51
        char   *sql_postauth_table;
 
52
        char   *postauth_query;
 
53
        char   *allowed_chars;
49
54
 
50
55
        /* individual driver config */
51
56
        void    *localcfg;