Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pygeoip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pygeoip
Commits
e1af7d4e
Commit
e1af7d4e
authored
12 years ago
by
steve
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tz clear up and ip util update
parent
5ab11d2a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
12 deletions
+5
-12
pygeoip/timezone.py
+0
-0
pygeoip/util.py
+5
-12
No files found.
pygeoip/timezone.py
View file @
e1af7d4e
This diff is collapsed.
Click to expand it.
pygeoip/util.py
View file @
e1af7d4e
...
@@ -48,14 +48,10 @@ def ip2long_v4(ip):
...
@@ -48,14 +48,10 @@ def ip2long_v4(ip):
@return: network byte order 32-bit integer
@return: network byte order 32-bit integer
@rtype: int
@rtype: int
"""
"""
ip_array
=
ip
.
split
(
'.'
)
if
PY3
:
return
int
(
socket
.
inet_aton
(
ip
)
.
encode
(
'hex'
),
16
)
# int and long are unified in py3
return
int
(
ip_array
[
0
])
*
16777216
+
int
(
ip_array
[
1
])
*
65536
+
\
int
(
ip_array
[
2
])
*
256
+
int
(
ip_array
[
3
])
else
:
return
long
(
ip_array
[
0
])
*
16777216
+
long
(
ip_array
[
1
])
*
65536
+
\
long
(
ip_array
[
2
])
*
256
+
long
(
ip_array
[
3
])
def
ip2long_v6
(
ip
):
def
ip2long_v6
(
ip
):
...
@@ -67,7 +63,4 @@ def ip2long_v6(ip):
...
@@ -67,7 +63,4 @@ def ip2long_v6(ip):
@return: network byte order long
@return: network byte order long
@rtype: long
@rtype: long
"""
"""
ipbyte
=
socket
.
inet_pton
(
socket
.
AF_INET6
,
ip
)
return
int
(
socket
.
inet_pton
(
socket
.
AF_INET6
,
ip
)
.
encode
(
'hex'
),
16
)
ipnum
=
array
(
'L'
,
struct
.
unpack
(
'!4L'
,
ipbyte
))
max_index
=
len
(
ipnum
)
-
1
return
sum
(
ipnum
[
max_index
-
i
]
<<
(
i
*
32
)
for
i
in
range
(
len
(
ipnum
)))
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment