mirror of
https://github.com/matrix-construct/construct
synced 2024-12-28 00:14:07 +01:00
ircd: Adjust some default timeouts.
This commit is contained in:
parent
648981a4ce
commit
b05caee36f
2 changed files with 3 additions and 3 deletions
|
@ -101,7 +101,7 @@ struct ircd::client::conf
|
||||||
|
|
||||||
/// Time limit for how long a connected client can be in "request mode." This
|
/// Time limit for how long a connected client can be in "request mode." This
|
||||||
/// should never be hit unless there's an error in the handling code.
|
/// should never be hit unless there's an error in the handling code.
|
||||||
seconds request_timeout {10s};
|
seconds request_timeout {15s};
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Settings apply to all clients and cannot be configured per-client
|
/// Settings apply to all clients and cannot be configured per-client
|
||||||
|
|
|
@ -62,7 +62,7 @@ struct ircd::net::open_opts
|
||||||
net::ipport ipport;
|
net::ipport ipport;
|
||||||
|
|
||||||
/// The duration allowed for the TCP connection.
|
/// The duration allowed for the TCP connection.
|
||||||
milliseconds connect_timeout { 8000ms };
|
milliseconds connect_timeout { 5000ms };
|
||||||
|
|
||||||
/// Pointer to a sock_opts structure which will be applied to this socket
|
/// Pointer to a sock_opts structure which will be applied to this socket
|
||||||
/// if given. Defaults to null; no application is made.
|
/// if given. Defaults to null; no application is made.
|
||||||
|
@ -72,7 +72,7 @@ struct ircd::net::open_opts
|
||||||
bool handshake { true };
|
bool handshake { true };
|
||||||
|
|
||||||
/// The duration allowed for the SSL handshake
|
/// The duration allowed for the SSL handshake
|
||||||
milliseconds handshake_timeout { 8000ms };
|
milliseconds handshake_timeout { 5000ms };
|
||||||
|
|
||||||
/// Option to toggle whether to perform any certificate verification; if
|
/// Option to toggle whether to perform any certificate verification; if
|
||||||
/// false, everything no matter what is considered valid; you want true.
|
/// false, everything no matter what is considered valid; you want true.
|
||||||
|
|
Loading…
Reference in a new issue