mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
19 lines
434 B
Go
19 lines
434 B
Go
//go:build windows
|
|
|
|
package mpv
|
|
|
|
import (
|
|
"path/filepath"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func socketName(prefix, suffix string) string {
|
|
// Windows needs to use a named pipe for the socket
|
|
// see https://mpv.io/manual/master#using-mpv-from-other-programs-or-scripts
|
|
return filepath.Join(`\\.\pipe\mpvsocket`, prefix+uuid.NewString()+suffix)
|
|
}
|
|
|
|
func removeSocket(string) {
|
|
// Windows automatically handles cleaning up named pipe
|
|
}
|