Documentation
¶
Index ¶
- Constants
- func Decode(r io.Reader, value interface{}) error
- func Encode(w io.Writer, value interface{}) error
- func Filename(filename string) (string, error)
- func ReadConfigFile(filename string, cfg interface{}) error
- func ReadConfigKey(filename, key string) (interface{}, error)
- func Set(filename, key, value string) error
- func WriteConfigFile(filename string, cfg interface{}) error
- func WriteConfigKey(filename, key string, value interface{}) error
- func WriteFile(filename string, buf []byte) error
- type Addresses
- type BootstrapPeer
- type Config
- type Datastore
- type Identity
Constants ¶
View Source
const DefaultConfigFilePath = DefaultPathRoot + "/config"
DefaultConfigFilePath points to the ipfs node config file.
View Source
const DefaultPathRoot = "~/.go-ipfs"
DefaultPathRoot is the default parth for the IPFS node's root dir.
Variables ¶
This section is empty.
Functions ¶
func ReadConfigFile ¶
ReadConfigFile reads the config from `filename` into `cfg`.
func ReadConfigKey ¶
ReadConfigKey retrieves only the value of a particular key
func WriteConfigFile ¶
WriteConfigFile writes the config from `cfg` into `filename`.
func WriteConfigKey ¶
WriteConfigKey writes the value of a particular key
Types ¶
type Addresses ¶
type Addresses struct { Swarm string // address for the swarm network API string // address for the local API (RPC) }
Addresses stores the (string) multiaddr addresses for the node.
type BootstrapPeer ¶
type BootstrapPeer struct { Address string PeerID string // until multiaddr supports ipfs, use another field. }
BootstrapPeer is a peer used to bootstrap the network.
type Config ¶
type Config struct { Identity Identity // local node's peer identity Datastore Datastore // local node's storage Addresses Addresses // local node's addresses Bootstrap []*BootstrapPeer // local nodes's bootstrap peers }
Config is used to load IPFS config files.
type Identity ¶
Identity tracks the configuration of the local node's identity.
func (*Identity) DecodePrivateKey ¶
func (i *Identity) DecodePrivateKey(passphrase string) (crypto.PrivateKey, error)
DecodePrivateKey is a helper to decode the users PrivateKey
Click to show internal directories.
Click to hide internal directories.