Documentation ¶
Overview ¶
Package server provides a server that can wrap a node and serve an http api for interacting with the node.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Server ¶
type Server struct { Dir string // contains filtered or unexported fields }
A Server is a collection of siad modules that can be communicated with over an http api.
func New ¶
func New(APIaddr string, requiredUserAgent string, requiredPassword string, nodeParams node.NodeParams) (*Server, error)
New creates a new API server from the provided modules. The API will require authentication using HTTP basic auth if the supplied password is not the empty string. Usernames are ignored for authentication. This type of authentication sends passwords in plaintext and should therefore only be used if the APIaddr is localhost.
func (*Server) APIAddress ¶
APIAddress returns the underlying node's api address
func (*Server) GatewayAddress ¶
func (srv *Server) GatewayAddress() modules.NetAddress
GatewayAddress returns the underlying node's gateway address
func (*Server) HostPublicKey ¶ added in v1.3.3
func (srv *Server) HostPublicKey() (types.SiaPublicKey, error)
HostPublicKey returns the host's public key or an error if the node is no host.