Branch: refs/heads/master Home: https://github.com/conformal/btcd Commit: 5da5dfe1c4e42238477e59ca0aeea258ee8e8f44 https://github.com/conformal/btcd/commit/5da5dfe1c4e42238477e59ca0aeea258ee8e8f44 Author: Owain G. Ainsworth <o...@conformal.com> Date: 2013-11-19 (Tue, 19 Nov 2013)
Changed paths: M config.go M rpcserver.go M sample-btcd.conf M server.go Log Message: ----------- Add --rpclisten that behaves frighteningly similar to --listen. Except it works for the rpcserver instead of the main server. Closes #34 Commit: 75e577c82e53e9e3664cf104a82ee8759eed59c3 https://github.com/conformal/btcd/commit/75e577c82e53e9e3664cf104a82ee8759eed59c3 Author: Owain G. Ainsworth <o...@conformal.com> Date: 2013-11-19 (Tue, 19 Nov 2013) Changed paths: M config.go M rpcserver.go M util/btcctl/btcctl.go Log Message: ----------- RPC TLS Support. All rpc sockets now listen using TLS by default, and this can not be turned off. The keys (defauling to the datadirectory) may be provided by --rpccert and --rpckey. If the keys do not exist we will generate a new self-signed keypair with some sane defaults (hostname and all current interface addresses). Additionally add tls capability to btcctl so that it can still be used. The certificate to use for verify can be provided on the commandline or verification can be turned off (this leaves you susceptible to MITM attacks) Initial code from dhill (rpc tls support) and jrick (key generation), cleanup, debugging and polishing from me. Compare: https://github.com/conformal/btcd/compare/5ec4aaff0900...75e577c82e53