OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
internet
/
iocpreactor
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
__init__.py
191 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📁
__pycache__
-
03/31/2022 06:22:39 AM
rwxr-xr-x
📄
abstract.py
12.81 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
build.bat
106 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
const.py
524 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
interfaces.py
942 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📁
iocpsupport
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
notes.txt
890 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
reactor.py
8.97 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
setup.py
588 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
tcp.py
19.38 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
udp.py
13.69 KB
09/08/2017 10:38:36 AM
rw-r--r--
Editing: setup.py
Close
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Distutils file for building low-level IOCP bindings from their Pyrex source """ from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext setup(name='iocpsupport', ext_modules=[Extension('iocpsupport', ['iocpsupport/iocpsupport.pyx', 'iocpsupport/winsock_pointers.c'], libraries = ['ws2_32'], ) ], cmdclass = {'build_ext': build_ext}, )