]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
document timeout rcode
authorAlan T. DeKok <aland@freeradius.org>
Thu, 1 May 2025 11:01:17 +0000 (07:01 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 1 May 2025 11:01:17 +0000 (07:01 -0400)
doc/antora/modules/reference/partials/rcode_table.adoc

index d90608544965425558dd3e0ecba52477a00678c5..3463def0045ef70236fad848591e8d3fdd4b9b98 100644 (file)
@@ -2,6 +2,10 @@
 [cols="15%,85%"]
 |=====
 | Return code   | Description
+| `disallow`    | Access to a particular resource is
+                  denied. This is similar to `reject` but is the result
+                  of an authorizational check failing, as opposed to
+                  credentials being incorrect.
 | `fail`       | The operation failed.  Usually as a result of an
                   external dependency like a database being unavailable
                   or an internal error.
                   attribute values.
 | `noop`        | The operation did nothing.
 | `notfound`    | A 'lookup' operation returned no results.
-| `ok`          | Operation completed successfully but did not change any
-                  attributes in the request.
+| `ok`          | Operation completed successfully.
 | `reject`      | The operation indicates the current request should be
                   'rejected'.  What this actually means is different from
                   protocol to protocol.  It usually means that access to
                   the requested resource should be denied, or that the
                   current request should be NAKd.  Usually returned when
                   provided credentials were invalid.
+| `timeout`     | The operation failed due to a timeout.
 | `updated`     | The operation completed successfully and updated one
                   or more attributes in the request.
-| `disallow`    | Access to a particular resource is
-                  denied. This is similar to `reject` but is the result
-                  of an authorizational check failing, as opposed to
-                  credentials being incorrect.
 | `yield`       | Returned by an operation when execution of a request should
                   be suspended.
 |=====
 
 [NOTE]
 ====
-In versions ≤ v3.2.x the `disallow` rcode was called `userlock`. `disallow` and
+In versions before 4.0, the `disallow` rcode was called `userlock`. The terms `disallow` and
 `userlock` have an identical meaning. `disallow` will be returned in any
 instance where `userlock` was returned in v3.0.x or v3.2.x
 ====