maintainer-feedback requested: [Bug 200060] [lang/python34] Missing network-related constants

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat May 9 03:27:47 UTC 2015


yuri at rawbw.com has reassigned Bugzilla Automation <bugzilla at FreeBSD.org>'s
request for maintainer-feedback to python at FreeBSD.org:
Bug 200060: [lang/python34] Missing network-related constants
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200060



--- Description ---
Both python 2 and 3 are missing some setsockopt values, for example in the code
below:
They all come from /usr/include/netinet/in.h, but IP_MULTICAST_LOOP=11 is still
in python, but IP_ADD_MEMBERSHIP=12 isn't.

Additionally, IPPROTO_DIVERT is also missing, so I have to use:
> socket_IPPROTO_DIVERT=258



Example:
> import socket
> sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
> sock.setsockopt(socket.IPPROTO_IP, socket.IP_MULTICAST_VIF, 1)
> sock.setsockopt(socket.IPPROTO_IP, socket.IP_RSVP_ON, 1)
> sock.setsockopt(socket.IPPROTO_IP, socket.IP_PORTRANGE, 1)
> sock.setsockopt(socket.IPPROTO_IP, socket.IP_RECVIF, 1)


More information about the freebsd-python mailing list