uds_windows.go 245 B

12345678910
  1. // +build windows
  2. package statsd
  3. import "fmt"
  4. // newUDSWriter is disable on windows as unix sockets are not available
  5. func newUDSWriter(addr string) (statsdWriter, error) {
  6. return nil, fmt.Errorf("unix socket is not available on windows")
  7. }