Skip to content

Commit ab6dfdb

Browse files
alectric-trdpgeorge
authored andcommitted
unix-ffi/socket: Remove ip add/drop membership from socket.
Remove the IP_ADD_MEMBERSHIP and IP_DROP_MEMBERSHIP since they are now defined in the builtin socket module, because they vary across systems. Depends on: micropython/micropython#18459 Signed-off-by: Alex Tran <alex.t.tran@gmail.com>
1 parent 6ca6f5b commit ab6dfdb

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

unix-ffi/socket/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
metadata(version="0.5.2")
1+
metadata(version="0.5.3")
22

33
# Originally written by Paul Sokolovsky.
44

unix-ffi/socket/socket.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
_GLOBAL_DEFAULT_TIMEOUT = 30
66
IPPROTO_IP = 0
7-
IP_ADD_MEMBERSHIP = 35
8-
IP_DROP_MEMBERSHIP = 36
97
INADDR_ANY = 0
108

119
error = OSError

0 commit comments

Comments
 (0)