summaryrefslogtreecommitdiff
path: root/lib/pleroma/helpers/inet_helper.ex
blob: 126f823819ad4aafc201ba7cb51712ee1743b04e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Helpers.InetHelper do
  def parse_address(ip) when is_tuple(ip) do
    {:ok, ip}
  end

  def parse_address(ip) when is_binary(ip) do
    ip
    |> String.to_charlist()
    |> parse_address()
  end

  def parse_address(ip) do
    :inet.parse_address(ip)
  end
end