Table of Contents
List of Tables
List of Examples
This is a module which provides a FIFO transport layer implementation for Management Interface. It receives the command over a FIFO file and returns the output through the reply_fifo specified.
The module checks every 30 seconds if the FIFO file exists, and if it was deleted, it recreates it. If one wants to force the fifo file recreation, it should send a SIGHUP signal to the MI process PID.
The external commands issued via FIFO interface must follow the following syntax:
request = first_line argument*
first_line = ':'command_name':'reply_fifo'\n'
argument = (arg_name '::' (arg_value)? ) | (arg_value)
arg_name = not-quoted_string
arg_value = not-quoted_string | '"' string '"'
not-quoted_string = string - {',",\n,\r}
The following modules must be loaded before this module:
No dependencies on other OpenSIPS modules.
The name of the FIFO file to be created for listening and reading external commands.
Default value is NONE.
Permission to be used for creating the listening FIFO file. It follows the UNIX conventions.
Default value is 0660 (rw-rw----).
Group to be used for creating the listening FIFO file.
Default value is the inherited one.
Example 1.3. Set fifo_group
parameter
... modparam("mi_fifo", "fifo_group", 0) modparam("mi_fifo", "fifo_group", "root") ...
User to be used for creating the listening FIFO file.
Default value is the inherited one.
Example 1.4. Set fifo_user
parameter
... modparam("mi_fifo", "fifo_user", 0) modparam("mi_fifo", "fifo_user", "root") ...
Table 2.1. Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)
Name | DevScore | Commits | Lines ++ | Lines -- | |
---|---|---|---|---|---|
1. | Bogdan-Andrei Iancu (@bogdan-iancu) | 54 | 31 | 2237 | 231 |
2. | Daniel-Constantin Mierla (@miconda) | 12 | 10 | 20 | 22 |
3. | Liviu Chircu (@liviuchircu) | 8 | 6 | 8 | 41 |
4. | Razvan Crainea (@razvancrainea) | 7 | 4 | 153 | 54 |
5. | Henning Westerholt (@henningw) | 5 | 2 | 62 | 109 |
6. | Jerome Martin | 3 | 1 | 3 | 3 |
7. | Konstantin Bokarius | 3 | 1 | 2 | 5 |
8. | Ovidiu Sas (@ovidiusas) | 3 | 1 | 2 | 2 |
9. | Julián Moreno Patiño | 3 | 1 | 1 | 1 |
10. | Edson Gellert Schubert | 3 | 1 | 0 | 103 |
All remaining contributors: Dusan Klinec, Walter Doekes (@wdoekes).
(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 2.2. Most recently active contributors(1) to this module
Name | Commit Activity | |
---|---|---|
1. | Bogdan-Andrei Iancu (@bogdan-iancu) | Oct 2006 - Jun 2018 |
2. | Liviu Chircu (@liviuchircu) | Mar 2014 - Jun 2018 |
3. | Razvan Crainea (@razvancrainea) | Feb 2012 - Nov 2016 |
4. | Julián Moreno Patiño | Feb 2016 - Feb 2016 |
5. | Dusan Klinec | Dec 2015 - Dec 2015 |
6. | Walter Doekes (@wdoekes) | May 2014 - May 2014 |
7. | Daniel-Constantin Mierla (@miconda) | Nov 2006 - Mar 2008 |
8. | Konstantin Bokarius | Mar 2008 - Mar 2008 |
9. | Edson Gellert Schubert | Feb 2008 - Feb 2008 |
10. | Ovidiu Sas (@ovidiusas) | Feb 2008 - Feb 2008 |
All remaining contributors: Henning Westerholt (@henningw), Jerome Martin.
(1) including any documentation-related commits, excluding merge commits
Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Liviu Chircu (@liviuchircu), Razvan Crainea (@razvancrainea), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Jerome Martin.
doc copyrights:
Copyright © 2006 Voice Sistem SRL