This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author phihag
Recipients phihag
Date 2009-02-27.01:49:56
SpamBayes Score 4.6264756e-08
Marked as misclassified No
Message-id <1235699401.83.0.959623868909.issue5379@psf.upfronthosting.co.za>
In-reply-to
Content
The multicast example Demo/sockets/mcast.py
1. mentions that multicast is only implemented on SGI (and optional on
other systems). That is not the case anymore.
2. Includes completely unrelated code for broadcast transmission. There
is already an example for that, suitably named broadcast.py (in the same
directory).
3. Does only support IPv4.
4. Is borderline buggy. Line 85 only works by accident. Similarly, line
37 fails if the TTL would be increased to >127.
5. Is ugly. Line 79-81 are an example of how not to write python code,
line 62 can be deleted without changing the program's semantics.
(All line numbers refer to rev70006)

The attached patch removes broadcast support in mcast.py, adds IPv6
support and fixes all other problems mentioned above.
History
Date User Action Args
2009-02-27 01:50:01phihagsetrecipients: + phihag
2009-02-27 01:50:01phihagsetmessageid: <1235699401.83.0.959623868909.issue5379@psf.upfronthosting.co.za>
2009-02-27 01:49:59phihaglinkissue5379 messages
2009-02-27 01:49:58phihagcreate