adam-gui/vendor/github.com/godbus/dbus/v5/conn_windows.go

16 lines
277 B
Go
Raw Permalink Normal View History

2024-04-29 19:13:50 +02:00
//+build windows
package dbus
import "os"
const defaultSystemBusAddress = "tcp:host=127.0.0.1,port=12434"
func getSystemBusPlatformAddress() string {
address := os.Getenv("DBUS_SYSTEM_BUS_ADDRESS")
if address != "" {
return address
}
return defaultSystemBusAddress
}