-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comment out line in python-iso15118 that causes OSError on M1 mac
Signed-off-by: Aria Nolan <[email protected]>
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- /ext/dist/libexec/everest/3rd_party/josev/iso15118/evcc/transport/udp_client.py | ||
+++ /ext/dist/libexec/everest/3rd_party/josev/iso15118/evcc/transport/udp_client.py | ||
@@ -65,7 +65,7 @@ | ||
# as the dual of bind(), in the server side, since bind() controls which | ||
# interface(s) the socket receives multicast packets from. | ||
interface_index = socket.if_nametoindex(iface) | ||
- sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_MULTICAST_IF, interface_index) | ||
+ # sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_MULTICAST_IF, interface_index) | ||
|
||
return sock |