rpcfetch/io_unix.go
Ophestra Umiker 5bb6f9f1a8
library: io: move ErrAgain to shared and errPipe value to platform-specific
ErrAgain is not platform specific however EPIPE equivalent is different on Windows.

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
2024-06-30 02:56:15 +09:00

31 lines
454 B
Go

//go:build !windows
package rpcfetch
import (
"errors"
"io/fs"
"net"
"syscall"
"time"
)
var errPipe = syscall.EPIPE
func (d *Client) dial() error {
if d.dialed {
panic("attempted to dial on open client")
}
if conn, err := net.DialTimeout("unix", sockPath()+"/discord-ipc-0", 5*time.Second); err != nil {
if errors.Is(err, fs.ErrNotExist) {
return ErrAgain
}
return err
} else {
d.conn = conn
d.dialed = true
}
return nil
}