P1sec / pysctp

SCTP stack for Python
http://www.p1sec.com
161 stars 67 forks source link

Python 3 support #13

Closed oscarnyl closed 6 years ago

oscarnyl commented 10 years ago

Python 3 support has been added in the following branch, but not pulled. https://github.com/lilydjwg/pysctp

turicas commented 8 years ago

SCTP is available on Python3 for GNU/Linux systems by installing libsctp1, libsctp-dev and lksctp-tools and do not require any other Python library than Python's socket. Read more about it.

ghost commented 6 years ago

Python 3 SCTP support lacks higher-level interface from libsctp (bindx / connectx ..), though same result can be achieve with setsockopt. Python 3 port is still useful, but we could think of lightweight Python 3 SCTP module.

p1-bmu commented 6 years ago

_sctp.c and other Python files has been adapted to support both Python2 and Python3.