Skip to content

Commit 9e90a2f

Browse files
committed
Add UDS support
1 parent b122843 commit 9e90a2f

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ fifo used for the reply from OpenSIPS (Default: `/tmp`)
133133
(Default: `http://127.0.0.1:8888/mi`).
134134
* `datagram_ip`: The default IP used when `datagram` `communication_type` is used (Default: `127.0.0.1`)
135135
* `datagram_port`: The default port used when `datagram` `communication_type` is used (Default: `8080`)
136+
* `datagram_unix_socket`: The default unix socket used when `datagram` `communication_type` is used (Default: `/tmp/opensips.sock`)
136137

137138
Each module can use each of the parameters above, but can also declare their
138139
own. You can find in each module's documentation page the parameters that they

opensipscli/defaults.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
"url": "http://127.0.0.1:8888/mi",
6868
"datagram_ip": "127.0.0.1",
6969
"datagram_port": "8080",
70+
"datagram_unix_socket": "/tmp/opensips.sock",
7071

7172
# database module
7273
"database_url": "mysql://opensips:opensipsrw@localhost",

opensipscli/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
## along with this program. If not, see <http://www.gnu.org/licenses/>.
1818
##
1919

20-
__version__ = '0.3.1'
20+
__version__ = '0.3.2'
2121

2222
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4

0 commit comments

Comments
 (0)