annotate .editorconfig @ 780:560b62f6b0a7

Core: rework socket layer, closes #939 @6h Rework the ip_connector and ip_acceptor to be more easy to use. Also, ip_connector will now use a resolver to find appropriate endpoints. Bring back full support for IPv6/IPv4 with all possible combinations. The tls_stream class now owns a shared ssl::context that is copied from the acceptor or the connector. The tls_connector and tls_acceptor wraps basic ones for convenience and simplicity. Irccd and irccdctl now support local SSL sockets.
author David Demelier <markand@malikania.fr>
date Sun, 04 Nov 2018 17:26:05 +0100
parents 8c44bbcbbab9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
183
166f589e30e5 Misc: add .editorconfig
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 root = true
166f589e30e5 Misc: add .editorconfig
David Demelier <markand@malikania.fr>
parents:
diff changeset
2
166f589e30e5 Misc: add .editorconfig
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 [*]
207
6635b9187d71 Irccd: switch to 4 spaces indent, #518
David Demelier <markand@malikania.fr>
parents: 183
diff changeset
4 charset = utf-8
183
166f589e30e5 Misc: add .editorconfig
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 end_of_line = lf
166f589e30e5 Misc: add .editorconfig
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 insert_final_newline = true
773
8c44bbcbbab9 Misc: style, cleanup and update
David Demelier <markand@malikania.fr>
parents: 615
diff changeset
7 indent_style = tab
8c44bbcbbab9 Misc: style, cleanup and update
David Demelier <markand@malikania.fr>
parents: 615
diff changeset
8 indent_size = 8
183
166f589e30e5 Misc: add .editorconfig
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 trim_trailing_whitespace = true
615
4ee71022784c Misc: update .editorconfig for HTML files
David Demelier <markand@malikania.fr>
parents: 207
diff changeset
10
773
8c44bbcbbab9 Misc: style, cleanup and update
David Demelier <markand@malikania.fr>
parents: 615
diff changeset
11 [*.{html,xml,yml}]
8c44bbcbbab9 Misc: style, cleanup and update
David Demelier <markand@malikania.fr>
parents: 615
diff changeset
12 indent_size = 4