View Source httpd_custom_api behaviour (inets v9.2)

Behaviour with optional callbacks to customize the inets HTTP server.

The module implementing this behaviour shall be supplied to to the servers configuration with the option customize

Summary

Callbacks

Filter and possible alter HTTP request headers before they are processed by the server.

Provide default headers for the HTTP servers responses. Note that this option may override built-in defaults.

Filter and possible alter HTTP response headers before they are sent to the client.

Callbacks

Link to this callback

request_header/1

View Source (optional) (since OTP 17.5.6)
-callback request_header({Key :: string(), Value :: string()}) ->
                            {true, {Key :: string(), Value :: string()}} | false.

Filter and possible alter HTTP request headers before they are processed by the server.

Link to this callback

response_default_headers()

View Source (optional) (since OTP 18.1.1)
-callback response_default_headers() -> [{Key :: string(), Value :: string()}].

Provide default headers for the HTTP servers responses. Note that this option may override built-in defaults.

Link to this callback

response_header/1

View Source (optional) (since OTP 17.5.6)
-callback response_header({Key :: string(), Value :: string()}) ->
                             {true, {Key :: string(), Value :: string()}} | false | {true, string()}.

Filter and possible alter HTTP response headers before they are sent to the client.