Table of Contents
List of Tables
List of Examples
hep_port
parameterhep_send_timeout
parameterhep_max_msg_chunks
parameterhep_async
parameterhep_async_max_postponed_chunks
parameterhep_capture_id
parameterhep_async_local_connect_timeout
parameterhep_async_local_write_timeout
parameterThe proto_hep module is a transport module which implements hepV1 and hepV2 UDP-based communication and hepV3 TCP-based communication. It also offers an API with which you can register callbacks which are called after the HEP header is parsed and also can pack sip messages to HEP messages.The unpacking part is done internally.
Once loaded, you will be able to define HEP listeners in your configuration file by adding their IP and, optionally, a listening port. You can define both TCP and UDP listeners. On UDP you will be able to receive HEP v1, v2 and v3 packets, on TCP only HEPv3.
... #HEPv3 listener listen = hep_tcp:127.0.0.1:6061 # change the listening IP #HEPv1, v2, v3 listener listen = hep_udp:127.0.0.1:6061 # change the listening IP ...
The default port to be used by all TCP/UDP listeners.
Default value is 5656.
Time in milliseconds after a TCP connection will be closed if it is not available for blocking writing in this interval (and OpenSIPS wants to send something on it).
Default value is 100 ms.
The maximum number of chunks in which a HEP 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.
Example 1.3. Set hep_max_msg_chunks
parameter
... modparam("proto_hep", "hep_max_msg_chunks", 8) ...
Specifies whether the TCP 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 operations like connect and write.
Default value is 1 (enabled).
If hep_async is enabled, this specifies the maximum number of HEP 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.
Example 1.5. Set hep_async_max_postponed_chunks
parameter
... modparam("proto_hep", "hep_async_max_postponed_chunks", 16) ...
The parameter indicate the capture agent ID for HEPv2/v3 protocol. Limitation: 16-bit integer.
Default value is "1".
If hep_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.
Example 1.7. Set hep_async_local_connect_timeout
parameter
... modparam("proto_hep", "hep_async_local_connect_timeout", 200) ...
If hep_async is enabled, this specifies the number of milliseconds that a write op will be tried in blocking mode (optimization). If the write operation lasts more than this, the write will go to async mode and will be passed to bin MAIN for polling.
Default value is 10 ms.
Example 1.8. Set hep_async_local_write_timeout
parameter
... modparam("proto_hep", "tcp_async_local_write_timeout", 100) ...
The function packs connection details and sip message into HEP message. It's your job to free both the old and the new buffer.
Meaning of the parameters is as follows:
sockaddr_union *from - sockaddr_union describing sending socket
sockaddr_union *to - sockaddr_union describing receiving socket
int proto - protocol used in hep header;
char *payload SIP payload buffer
int plen SIP payload buffer length
char **retbuf HEP message buffer
int *retlen HEP message buffer length
The function register callbacks to be called whenever a HEP message is received. The callbacks parameters are struct hep_desc*(see hep.h for details) a structure that holds all details about the hep header and the receive_info* structure. The callback can return HEP_SCRIPT_SKIP which stops the HEP message from being passed thrrough scripts.
Meaning of the parameters is as follows:
hep_cb_t cb HEP callback
Table 3.1. Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)
Name | DevScore | Commits | Lines ++ | Lines -- | |
---|---|---|---|---|---|
1. | Ionut Ionita (@ionutrazvanionita) | 67 | 31 | 3455 | 401 |
2. | Razvan Crainea (@razvancrainea) | 10 | 8 | 24 | 5 |
3. | Liviu Chircu (@liviuchircu) | 5 | 3 | 19 | 31 |
4. | Bogdan-Andrei Iancu (@bogdan-iancu) | 5 | 3 | 8 | 4 |
(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. Regarding imported patches/code, we do our best to count the work on behalf of the proper owner, as per the "fix_authors" and "mod_renames" arrays in opensips/doc/build-contrib.sh. If you identify any patches/commits which do not get properly attributed to you, please submit a pull request which extends "fix_authors" and/or "mod_renames".
(3) ignoring whitespace edits, renamed files and auto-generated files
Table 3.2. Most recently active contributors(1) to this module
Name | Commit Activity | |
---|---|---|
1. | Razvan Crainea (@razvancrainea) | Nov 2015 - Oct 2018 |
2. | Bogdan-Andrei Iancu (@bogdan-iancu) | Jan 2017 - Jun 2018 |
3. | Liviu Chircu (@liviuchircu) | Mar 2016 - Jun 2018 |
4. | Ionut Ionita (@ionutrazvanionita) | Oct 2015 - Apr 2017 |
(1) including any documentation-related commits, excluding merge commits
Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Liviu Chircu (@liviuchircu), Ionut Ionita (@ionutrazvanionita).
doc copyrights:
Copyright © 2015 www.opensips-solutions.com