https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200060
Bug ID: 200060 Summary: [lang/python34] Missing network-related constants Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: pyt...@freebsd.org Reporter: y...@rawbw.com Flags: maintainer-feedback?(pyt...@freebsd.org) Assignee: pyt...@freebsd.org 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) -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"