github.com/jackc/pgconn.Config.Host (field)

8 uses

	github.com/jackc/pgconn (current package)
		config.go#L32: 	Host           string // host (e.g. localhost) or absolute path to unix domain socket directory (e.g. /private/tmp)
		config.go#L315: 	config.Host = fallbacks[0].Host
		config.go#L323: 			host := config.Host
		config.go#L324: 			if network, _ := NetworkAddress(config.Host, config.Port); network == "unix" {
		errors.go#L72: 	fmt.Fprintf(sb, "failed to connect to `host=%s user=%s database=%s`: %s", e.config.Host, e.config.User, e.config.Database, e.msg)
		pgconn.go#L133: 			Host:      config.Host,

	github.com/jackc/pgx/v4
		conn.go#L215: 			c.log(ctx, LogLevelDebug, "pgx notification handler disabled by application supplied OnNotification", map[string]interface{}{"host": config.Config.Host})
		conn.go#L220: 		c.log(ctx, LogLevelInfo, "Dialing PostgreSQL server", map[string]interface{}{"host": config.Config.Host})