diff options
author | Ingela Anderton Andin <[email protected]> | 2015-09-30 10:24:35 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-09-30 17:02:51 +0200 |
commit | fe48161dbc7511220b0b91b06c26d2beba7a6586 (patch) | |
tree | 3aa823fd53036c4b5508fd268c744b1e223c0b6b /lib/inets/doc | |
parent | ec1284c810cdc176b93d7316e78dc9c6aa84a504 (diff) | |
download | otp-fe48161dbc7511220b0b91b06c26d2beba7a6586.tar.gz otp-fe48161dbc7511220b0b91b06c26d2beba7a6586.tar.bz2 otp-fe48161dbc7511220b0b91b06c26d2beba7a6586.zip |
inets: Add new customize function response_default_headers
This enables the user to provide default HTTP header values for headers
that should always be sent. Note that these values
may override built in defaults.
Diffstat (limited to 'lib/inets/doc')
-rw-r--r-- | lib/inets/doc/src/httpd_custom_api.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/inets/doc/src/httpd_custom_api.xml b/lib/inets/doc/src/httpd_custom_api.xml index 23417900fa..d2e5441895 100644 --- a/lib/inets/doc/src/httpd_custom_api.xml +++ b/lib/inets/doc/src/httpd_custom_api.xml @@ -33,6 +33,20 @@ </description> <funcs> + <func> + <name>response_default_headers() -> [Header] </name> + <fsummary>Provide default headers for the HTTP servers responses.</fsummary> + <type> + <v>Header = {HeaderName :: string(), HeaderValue::string()}</v> + <d>string:to_lower/1 will be performed on the HeaderName</d> + </type> + <desc> + <p>Provide default headers for the HTTP servers responses. Note that this + option may override built-in defaults. + </p> + </desc> + </func> + <func> <name>response_header({HeaderName, HeaderValue}) -> {true, Header} | false </name> <fsummary>Filter and possible alter HTTP response headers.</fsummary> |