|
9 | 9 | * |
10 | 10 | * @package SimpleSAMLphp |
11 | 11 | */ |
12 | | - |
13 | 12 | class Radius extends \SimpleSAML\Module\core\Auth\UserPassBase |
14 | 13 | { |
15 | 14 | /** |
16 | | - * The list of radius servers to use. |
| 15 | + * Var array The list of radius servers to use. |
17 | 16 | */ |
18 | 17 | private $servers; |
19 | 18 |
|
20 | 19 | /** |
21 | | - * The hostname of the radius server. |
| 20 | + * @var string The hostname of the radius server. |
22 | 21 | */ |
23 | 22 | private $hostname; |
24 | 23 |
|
25 | 24 | /** |
26 | | - * The port of the radius server. |
| 25 | + * @var int The port of the radius server. |
27 | 26 | */ |
28 | 27 | private $port; |
29 | 28 |
|
30 | 29 | /** |
31 | | - * The secret used when communicating with the radius server. |
| 30 | + * @var string The secret used when communicating with the radius server. |
32 | 31 | */ |
33 | 32 | private $secret; |
34 | 33 |
|
35 | 34 | /** |
36 | | - * The timeout for contacting the radius server. |
| 35 | + * @var int The timeout for contacting the radius server. |
37 | 36 | */ |
38 | 37 | private $timeout; |
39 | 38 |
|
40 | 39 | /** |
41 | | - * The number of retries which should be attempted. |
| 40 | + * @var int The number of retries which should be attempted. |
42 | 41 | */ |
43 | 42 | private $retries; |
44 | 43 |
|
45 | 44 | /** |
46 | | - * The realm to be added to the entered username. |
| 45 | + * Var string The realm to be added to the entered username. |
47 | 46 | */ |
48 | 47 | private $realm; |
49 | 48 |
|
50 | 49 | /** |
51 | | - * The attribute name where the username should be stored. |
| 50 | + * @var string The attribute name where the username should be stored. |
52 | 51 | */ |
53 | 52 | private $usernameAttribute; |
54 | 53 |
|
55 | 54 | /** |
56 | | - * The vendor for the RADIUS attributes we are interrested in. |
| 55 | + * @var string The vendor for the RADIUS attributes we are interrested in. |
57 | 56 | */ |
58 | 57 | private $vendor; |
59 | 58 |
|
60 | 59 | /** |
61 | | - * The vendor-specific attribute for the RADIUS attributes we are |
62 | | - * interrested in. |
| 60 | + * @var string The vendor-specific attribute for the RADIUS attributes we are |
| 61 | + * interrested in. |
63 | 62 | */ |
64 | 63 | private $vendorType; |
65 | 64 |
|
66 | 65 | /** |
67 | | - * The NAS-Identifier that should be set in Access-Request packets. |
| 66 | + * @var string The NAS-Identifier that should be set in Access-Request packets. |
68 | 67 | */ |
69 | 68 | private $nasIdentifier; |
70 | 69 |
|
| 70 | + |
71 | 71 | /** |
72 | 72 | * Constructor for this authentication source. |
73 | 73 | * |
|
0 commit comments