Version: 4.1.2
5.1 Configuration Table Structure
"configuration/configuration-table-structs.ss" provides the following structures that
represent a standard configuration (see Web Server Unit) of the Web Server .
The contracts on this structure influence the valid types of values in
the configuration table S-expression file format described in
Configuration Table.
| (struct | | responders | ( | servlet | | | | | | servlet-loading | | | | | | authentication | | | | | | servlets-refreshed | | | | | | passwords-refreshed | | | | | | file-not-found | | | | | | protocol | | | | | | collect-garbage)) |
|
| servlet : (url? any/c . -> . response?) |
| servlet-loading : (url? any/c . -> . response?) |
| authentication : (url? (cons/c symbol? string?) . -> . response?) |
| servlets-refreshed : (-> response?) |
| passwords-refreshed : (-> response?) |
| file-not-found : (request? . -> . response?) |
| protocol : (url? . -> . response?) |
| collect-garbage : (-> response?) |
| (struct | | messages | ( | servlet | | | | | | authentication | | | | | | servlets-refreshed | | | | | | passwords-refreshed | | | | | | file-not-found | | | | | | protocol | | | | | | collect-garbage)) |
|
| servlet : string? |
| authentication : string? |
| servlets-refreshed : string? |
| passwords-refreshed : string? |
| file-not-found : string? |
| protocol : string? |
| collect-garbage : string? |