|
1 | 1 | ------------------------------------------------------------------------------ |
2 | 2 | -- Ada Web Server -- |
3 | 3 | -- -- |
4 | | --- Copyright (C) 2000-2019, AdaCore -- |
| 4 | +-- Copyright (C) 2000-2020, AdaCore -- |
5 | 5 | -- -- |
6 | 6 | -- This library is free software; you can redistribute it and/or modify -- |
7 | 7 | -- it under terms of the GNU General Public License as published by the -- |
@@ -382,6 +382,9 @@ package AWS.Config is |
382 | 382 | function Config_Directory return String with Inline; |
383 | 383 | -- Directory where AWS parameter files are located |
384 | 384 |
|
| 385 | + function Disable_Program_Ini return Boolean with Inline; |
| 386 | + -- Whether the <program_name>.ini file should be read |
| 387 | + |
385 | 388 | function Transient_Cleanup_Interval return Duration with Inline; |
386 | 389 | -- Number of seconds between each run of the cleaner task to remove |
387 | 390 | -- transient pages. |
@@ -520,6 +523,7 @@ private |
520 | 523 | Session_Cleaner_Priority, |
521 | 524 | Service_Priority, |
522 | 525 | Config_Directory, |
| 526 | + Disable_Program_Ini, |
523 | 527 | User_Agent, |
524 | 528 | Transient_Cleanup_Interval, |
525 | 529 | Transient_Lifetime, |
@@ -796,6 +800,9 @@ private |
796 | 800 | Config_Directory => |
797 | 801 | (Str, +Default.Config_Directory), |
798 | 802 |
|
| 803 | + Disable_Program_Ini => |
| 804 | + (Bool, Default.Disable_Program_Ini), |
| 805 | + |
799 | 806 | User_Agent => |
800 | 807 | (Str, +Default.User_Agent), |
801 | 808 |
|
|
0 commit comments