aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/manual/ranch.set_protocol_options.asciidoc
blob: 36370c81d1ba11d447d4ccae32268ca3007170d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
= ranch:set_protocol_options(3)

== Name

ranch:set_protocol_options - Set the protocol options

== Description

[source,erlang]
----
set_protocol_options(Ref       :: ranch:ref(),
                     ProtoOpts :: any())
    -> ok
----

Set the protocol options.

The change will be applied immediately for all new connections.
Old connections will not receive the new options.

Note that the complete set of protocol options is replaced. To update a subset
of the options, it is recommended to get the current protocol options using
link:man:ranch:get_protocol_options(3)[ranch:get_protocol_options(3)], update
them and then set them back using this function.

== Arguments

Ref::

The listener name.

ProtoOpts::

The new protocol options.

== Return value

The atom `ok` is always returned. It can be safely ignored.

== Examples

.Set the protocol options
[source,erlang]
----
ranch:set_protocol_options(example, ProtoOpts).
----

.Update some of the protocol options
[source,erlang]
----
ProtoOpts0 = ranch:get_protocol_options(example),
ProtoOpts = ProtoOpts0#{request_timeout => 2000},
ranch:set_protocol_options(example, ProtoOpts).
----

== See also

link:man:ranch:get_protocol_options(3)[ranch:get_protocol_options(3)],
link:man:ranch:set_max_connections(3)[ranch:set_max_connections(3)],
link:man:ranch:set_transport_options(3)[ranch:set_transport_options(3)],
link:man:ranch(3)[ranch(3)]