forked from savonet/liquidsoap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request savonet#491 from savonet/input.harbor-ipv6
IPv6 support for input.harbor. ref: savonet#190
- Loading branch information
Showing
6 changed files
with
118 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Deprecated APIs | ||
# @flag hidden | ||
def deprecated() = | ||
def on_change_harbor_bind_addr(v) = | ||
log(label="lang.deprecated",level=2, | ||
"WARNING: \"harbor.bind_addr\" is deprecated! Please use \"harbor.bind_addrs\"") | ||
set("harbor.bind_addrs",[v]) | ||
end | ||
|
||
register(name="[DEPRECATED] Harbor bind_addr", | ||
descr="IP addresses on which the harbor should listen.", | ||
on_change=on_change_harbor_bind_addr,"harbor.bind_addr","0.0.0.0") | ||
end | ||
|
||
deprecated() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
%include "http.liq" | ||
%include "video.liq" | ||
%include "gstreamer.liq" | ||
%include "deprecations.liq" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters