.editorconfig
author Matthew Wild <mwild1@gmail.com>
Thu, 16 Feb 2023 15:59:26 +0000
branch0.12
changeset 12889 3a6dae39c70e
parent 11710 56feb0cf7052
child 13195 1266efb7101c
permissions -rw-r--r--
net.http.server: Add new API to get HTTP request from a connection This information is sometimes necessary in the context where we have a connection that we know (or believe to be) associated with an incoming HTTP request. For example, it can be used to retrieve the IP address of a request (which may differ from the IP address of the connection, due to X-Forwarded-For and co). Thanks to the Jitsi team for highlighting this gap in the API.

root = true

[*]
end_of_line = lf
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true

[CHANGES]
indent_size = 4
indent_style = space

[configure]
indent_size = 3
indent_style = space

[**.xml]
indent_size = 2
indent_style = space