1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Do not support unix sockets on windows

This commit is contained in:
Ricardo Hermida Ruiz 2016-10-26 20:04:19 -02:00
parent cebf7ad9fa
commit b2e8461af5

View file

@ -89,9 +89,9 @@ defmodule HTTParrot do
end
end
defp unix_socket_supported? do
case Integer.parse("#{:erlang.system_info(:otp_release)}") do
{n, _} when n >= 19 -> true
def unix_socket_supported? do
case {:os.type, Integer.parse("#{:erlang.system_info(:otp_release)}")} do
{{:unix, _}, {n, _}} when n >= 19 -> true
_ -> false
end
end