home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- import socket
- import sys
- if sys.hexversion < 33751040 or sys.platform == 'win32':
-
- def inet_aton(text):
- if text == '255.255.255.255':
- return '\xff\xff\xff\xff'
- return socket.inet_aton(text)
-
- else:
- inet_aton = socket.inet_aton
- inet_ntoa = socket.inet_ntoa
-