Skip to content

PROTO_BINS module

This module implements a secure Binary communication protocol over TLS, to be used by the OpenSIPS clustering engine provided by the clusterer module.

Once loaded, you will be able to define BINS listeners in your configuration file by adding their IP and, optionally, a listening port, similar to this example:

...
socket = bins:127.0.0.1 # change the listening IP
socket = bins:127.0.0.1:5557 # change the listening IP and port
...

The following modules must be loaded before this module:

  • tls_openssl or tls_wolfssl, depending on the desired TLS library
  • tls_mgm.

The following libraries or applications must be installed before running OpenSIPS with this module loaded:

  • None.

The default port to be used by all BINS listeners.

Default value is 5556.

Set bins_port parameter
...
modparam("proto_bins", "bins_port", 5557)
...

Sets the timeout (in milliseconds) for the SSL/TLS handshake sequence to complete. It may be necessary to increase this value when using a CPU intensive cipher for the connection to allow time for keys to be generated and processed.

The timeout is invoked during acceptance of a new connection (inbound) and during the wait period when a new session is being initiated (outbound).

Default value is 100.

Set bins_handshake_timeout variable
param("proto_tls", "bins_handshake_timeout", 200) # number of milliseconds

Sets the timeout (in milliseconds) for blocking send operations to complete.

The send timeout is invoked for all TLS write operations, excluding the handshake process (see: bins_handshake_timeout)

Default value is 100 ms.

Set bins_send_timeout parameter
...
modparam("proto_bins", "bins_send_timeout", 200)
...

The maximum number of chunks in which a BINS message is expected to arrive via TCP. If a received packet is more fragmented than this, the connection is dropped (either the connection is very overloaded and this leads to high fragmentation - or we are the victim of an ongoing attack where the attacker is sending very fragmented traffic in order to decrease server performance).

Default value is 32.

Set bins_max_msg_chunks parameter
...
modparam("proto_bins", "bins_max_msg_chunks", 8)
...

Specifies whether the TCP/TLS connect and write operations should be done in an asynchronous mode (non-blocking connect and write) or not. If disabled, OpenSIPS will block and wait for TCP/TLS operations like connect and write.

Default value is 1 (enabled).

Set bins_async parameter
...
modparam("proto_bins", "bins_async", 0)
...

If bins_async is enabled, this specifies the maximum number of BINS messages that can be stashed for later/async writing. If the connection pending writes exceed this number, the connection will be marked as broken and dropped.

Default value is 32.

Set bins_async_max_postponed_chunks parameter
...
modparam("proto_bins", "bins_async_max_postponed_chunks", 16)
...

bins_async_local_connect_timeout (integer)

Section titled “bins_async_local_connect_timeout (integer)”

If bin_async is enabled, this specifies the number of milliseconds that a connect will be tried in blocking mode (optimization). If the connect operation lasts more than this, the connect will go to async mode and will be passed to TCP MAIN for polling.

Default value is 100 ms.

Set bins_async_local_connect_timeout parameter
...
modparam("proto_bins", "bins_async_local_connect_timeout", 200)
...

If tls_async is enabled, this specifies the number of milliseconds that a TLS handshake should be tried in blocking mode (optimization). If the handshake operation lasts more than this, the write will go to async mode and will be passed to tls MAIN for polling.

Default value is 10 ms.

Set bins_async_handshake_timeout parameter
...
modparam("proto_tls", "bins_async_handshake_timeout", 100)
...

Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)

#NameDevScoreCommitsLines++Lines—
1.Vlad Patrascu (@rvlad-patrascu)12385319
2.Stefan Darius (@dariusstefan)9526446
3.Bogdan-Andrei Iancu (@bogdan-iancu)3142
4.Nick Altmann (@nikbyte)3122
5.Razvan Crainea (@razvancrainea)3111

(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)

(2) including any documentation-related commits, excluding merge commits

(3) ignoring whitespace edits, renamed files and auto-generated files

#NameCommit Activity
1.Stefan Darius (@dariusstefan)Jun 2026 - Jul 2026
2.Razvan Crainea (@razvancrainea)Jun 2026 - Jun 2026
3.Vlad Patrascu (@rvlad-patrascu)Feb 2021 - May 2021
4.Nick Altmann (@nikbyte)May 2021 - May 2021
5.Bogdan-Andrei Iancu (@bogdan-iancu)Apr 2021 - Apr 2021

(1) including any documentation-related commits, excluding merge commits

Last edited by: Razvan Crainea (@razvancrainea), Vlad Patrascu (@rvlad-patrascu).

All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0