config

package
v0.0.0-...-bebc87d Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 4, 2014 License: MIT Imports: 11 Imported by: 0

Documentation

Index

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 Decode

func Decode(r io.Reader, value interface{}) error

Decode configuration with JSON

func Encode

func Encode(w io.Writer, value interface{}) error

Encode configuration with JSON

func Filename

func Filename(filename string) (string, error)

Filename returns the proper tilde expanded config filename.

func ReadConfigFile

func ReadConfigFile(filename string, cfg interface{}) error

ReadConfigFile reads the config from `filename` into `cfg`.

func ReadConfigKey

func ReadConfigKey(filename, key string) (interface{}, error)

ReadConfigKey retrieves only the value of a particular key

func Set

func Set(filename, key, value string) error

Set sets the value of a particular config key

func WriteConfigFile

func WriteConfigFile(filename string, cfg interface{}) error

WriteConfigFile writes the config from `cfg` into `filename`.

func WriteConfigKey

func WriteConfigKey(filename, key string, value interface{}) error

WriteConfigKey writes the value of a particular key

func WriteFile

func WriteFile(filename string, buf []byte) error

WriteFile writes the buffer at filename

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.

func Load

func Load(filename string) (*Config, error)

Load reads given file and returns the read config, or error.

type Datastore

type Datastore struct {
	Type string
	Path string
}

Datastore tracks the configuration of the datastore.

type Identity

type Identity struct {
	PeerID  string
	PrivKey string
}

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳