1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Helpers.InetHelper do
6 def parse_address(ip) when is_tuple(ip) do
10 def parse_address(ip) when is_binary(ip) do
12 |> String.to_charlist()
16 def parse_address(ip) do
17 :inet.parse_address(ip)