aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/manual/ranch.get_max_connections.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/manual/ranch.get_max_connections.asciidoc')
-rw-r--r--doc/src/manual/ranch.get_max_connections.asciidoc40
1 files changed, 40 insertions, 0 deletions
diff --git a/doc/src/manual/ranch.get_max_connections.asciidoc b/doc/src/manual/ranch.get_max_connections.asciidoc
new file mode 100644
index 0000000..3267c2d
--- /dev/null
+++ b/doc/src/manual/ranch.get_max_connections.asciidoc
@@ -0,0 +1,40 @@
+= ranch:get_max_connections(3)
+
+== Name
+
+ranch:get_max_connections - Get the max number of connections
+
+== Description
+
+[source,erlang]
+----
+get_max_connections(Ref :: ranch:ref())
+ -> MaxConns :: ranch:max_conns()
+----
+
+Get the max number of connections.
+
+== Arguments
+
+Ref::
+
+The listener name.
+
+== Return value
+
+The maximum number of connections is returned.
+
+== Examples
+
+.Get the max number of connections
+[source,erlang]
+----
+MaxConns = ranch:get_max_connections(example).
+----
+
+== See also
+
+link:man:ranch:get_protocol_options(3)[ranch:get_protocol_options(3)],
+link:man:ranch:get_transport_options(3)[ranch:get_transport_options(3)],
+link:man:ranch:set_max_connections(3)[ranch:set_max_connections(3)],
+link:man:ranch(3)[ranch(3)]