~ubuntu-branches/ubuntu/jaunty/freeradius/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/include/realms.h

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-09-22 08:42:02 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20080922084202-eyjprg3z55481ha5
Tags: 2.1.0+dfsg-0ubuntu1
* New upstream release.
* Fixes FTBFS issue with new libtool.
* Fixes listen on random port. (LP: #261809)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * realms.h     Structures, prototypes and global variables
6
6
 *              for realms
7
7
 *
8
 
 * Version:     $Id: realms.h,v 1.19 2008/04/18 09:29:49 aland Exp $
 
8
 * Version:     $Id$
9
9
 *
10
10
 */
11
11
 
12
12
#include <freeradius-devel/ident.h>
13
 
RCSIDH(realms_h, "$Id: realms.h,v 1.19 2008/04/18 09:29:49 aland Exp $")
 
13
RCSIDH(realms_h, "$Id$")
14
14
 
15
15
#define HOME_TYPE_INVALID (0)
16
16
#define HOME_TYPE_AUTH    (1)
47
47
        int             response_window;
48
48
        int             max_outstanding; /* don't overload it */
49
49
        int             currently_outstanding;
50
 
        uint32_t        total_requests_sent;
51
50
 
 
51
        struct timeval  revive_time;
52
52
        struct timeval  zombie_period_start;
53
53
        int             zombie_period; /* unresponsive for T, mark it dead */
54
54
 
65
65
 
66
66
        int             revive_interval; /* if it doesn't support pings */
67
67
        CONF_SECTION    *cs;
 
68
#ifdef WITH_STATS
 
69
        fr_stats_t      stats;
 
70
 
 
71
        fr_stats_ema_t  ema;
 
72
#endif
68
73
} home_server;
69
74
 
70
75