Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
  • 2 commits
  • 1 file changed
  • 0 commit comments
  • 1 contributor
Showing with 4 additions and 8 deletions.
  1. +4 −8 schema/wiggle.schema
@@ -77,13 +77,9 @@
{translation,
"mdns_client_lib.interface",
fun(Conf) ->
case cuttlefish_util:conf_get_value("ip", Conf) of
{IP, _Port} ->
[A, B, C, D] = [list_to_integer(O) ||
O <- re:split(IP, "\\.", [{return, list}])],
{ok, {A, B, C, D}};
_ ->
undefined
end
IP = cuttlefish_util:conf_get_value("listening_ip", Conf),
[A, B, C, D] = [list_to_integer(O) ||
O <- re:split(IP, "\\.", [{return, list}])],
{ok, {A, B, C, D}}
end
}.

No commit comments for this range

You can’t perform that action at this time.