home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.5)
-
- 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'
- else:
- return socket.inet_aton(text)
-
- else:
- inet_aton = socket.inet_aton
- inet_ntoa = socket.inet_ntoa
-