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

« back to all changes in this revision

Viewing changes to raddb/modules/always

  • 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:
 
1
# -*- text -*-
 
2
#
 
3
#  $Id$
 
4
 
 
5
#
 
6
# The "always" module is here for debugging purposes. Each
 
7
# instance simply returns the same result, always, without
 
8
# doing anything.
 
9
always fail {
 
10
        rcode = fail
 
11
}
 
12
always reject {
 
13
        rcode = reject
 
14
}
 
15
always noop {
 
16
        rcode = noop
 
17
}
 
18
always handled {
 
19
        rcode = handled
 
20
}
 
21
always updated {
 
22
        rcode = updated
 
23
}
 
24
always notfound {
 
25
        rcode = notfound
 
26
}
 
27
always ok {
 
28
        rcode = ok
 
29
        simulcount = 0
 
30
        mpp = no
 
31
}