Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33103413
inet_helper.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
764 B
Referenced Files
None
Subscribers
None
inet_helper.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 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
def
parse_cidr
(
proxy
)
when
is_binary
(
proxy
)
do
proxy
=
cond
do
"/"
in
String
.
codepoints
(
proxy
)
->
proxy
InetCidr
.
v4?
(
InetCidr
.
parse_address!
(
proxy
))
->
proxy
<>
"/32"
InetCidr
.
v6?
(
InetCidr
.
parse_address!
(
proxy
))
->
proxy
<>
"/128"
end
InetCidr
.
parse_cidr!
(
proxy
,
true
)
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Tue, Jan 20, 1:47 PM (15 h, 25 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
935408
Default Alt Text
inet_helper.ex (764 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment