File: pipe.go

package info (click to toggle)
golang-github-darkhz-mpvipc 0.0~git20231124.eb73ba4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: sh: 6; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 126 bytes parent folder | download
1
2
3
4
5
6
7
8
9
// +build !windows

package mpvipc

import "net"

func dial(path string) (net.Conn, error) {
	return net.Dial("unix", path)
}