-
-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
The pipe appears to be created successfully, but the socket always fails
To Reproduce
- Run
WINEPREFIX=/home/a/.local/share/wineprefixes/foobar2000/ wine bridge.exe - Click "Install"
- Launch
foobar2000 - Launch
discord - Ensure that the foo_discord_rich component is installed (v2.0.2 as of this writing)
- Play a track in foobar2000
Log File
Running as service
Starting service
Service started
Pipe \\.\pipe\discord-ipc-0(0x74) created
Waiting for pipe connection
Pipe connected
Socket -14 created
Failed to create socket: -14
Device (please complete the following information):
- Arch Linux (
Linux desktop 6.13.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Sun, 23 Mar 2025 17:17:30 +0000 x86_64 GNU/Linux) - Wine 10.3
Context
Probably happening somewhere here?
Lines 547 to 559 in 9d2440f
| int fd; | |
| if (IsLinux) | |
| { | |
| unsigned long socketArgs[] = { | |
| (unsigned long)AF_UNIX, | |
| (unsigned long)SOCK_STREAM, | |
| 0}; | |
| fd = sys_socketcall(SYS_SOCKET, socketArgs); | |
| } | |
| else | |
| fd = sys_socket(AF_UNIX, SOCK_STREAM, 0); | |
| print("Socket %d created\n", fd); |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working