@@ -20,23 +20,21 @@ python setup.py install --dry-run
2020* to just build and not install:
2121python setup.py build
2222
23- In case you want to install the module explicitely for Python 3,
24- just replace _python_ by _python3_ in the commands above.
23+ In case you want to install the module explicitely for Python 2 or 3,
24+ just replace _python_ by _python2_ / _python3_ in the commands above.
2525
2626======================================================================
2727DEPENDENCIES:
2828
29- You can automatically install dependencies for Debian/Ubuntu (for Python 2) :
29+ You can automatically install dependencies for Debian/Ubuntu:
3030make installdeps
3131
32- Otherwise, necessary would be e.g. on Ubuntu libsctp-dev, python-dev and / or
33- python3-dev
32+ Otherwise, necessary would be e.g. on Ubuntu: libsctp-dev and python-dev
33+ (python2-dev or python3-dev for an explicit version of Python)
3434
35- For Mac OSX (Montain lion OSX 10.8):
36- https://nplab.fh-muenster.de/groups/wiki/wiki/f366c/SCTP_on_Mountain_Lion.html
37-
38- Mac OSX SCTP Network Kernel Extension (NKE) available at:
39- http://sctp.fh-muenster.de/sctp-nke.html
35+ Support for Mac OSX is not tested, but should be doable through the SCTP Network
36+ Kernel Extension (NKE) available at:
37+ https://github.com/sctplab/SCTP_NKE_HighSierra
4038
4139======================================================================
4240INTRODUCTION
@@ -47,7 +45,7 @@ SCTP sockets to be used in most situations where a TCP or UDP socket
4745would work, while preserving the unique characteristics of the protocol.
4846
4947For more information about SCTP, go to http://www.sctp.org or RFC 4960.
50- For discussion, sources, bugs, go to http://github.com/philpraxis /pysctp
48+ For discussion, sources, bugs, go to http://github.com/p1sec /pysctp
5149
5250In a nutshell, PySCTP can be used as follows:
5351
@@ -65,8 +63,8 @@ sk.close()
6563
6664---------
6765
68- The autotest programs (test.py and test_server .py) are actually a good
69- example of pysctp usage.
66+ The autotest programs (e.g. test_local_cnx .py) are actually good examples of
67+ pysctp usage.
7068
7169The BSD/Sockets SCTP extensions are defined by an IETF draft
7270(draft-ietf-tsvwg-sctpsocket-10.txt) and PySCTP tries to map those
@@ -76,9 +74,6 @@ find advice about it in the the draft itself (not incredibly easy
7674to understand though), as well the 3rd edition of Unix Network
7775Programming.
7876
79- WARNING: the API of this module is not stable yet. We expect not to
80- change it too much, but do not base any critical work on it yet :)
81-
8277
8378======================================================================
8479DESCRIPTION
0 commit comments