- 06 Jan, 2015 8 commits
-
-
Matt Bell authored
core/commands: Don't use pointers for Type field
-
Matt Bell authored
-
Matt Bell authored
core/commands: Refactored command marshalers
-
Juan Batiz-Benet authored
I made the commands lib dir listing sort the contents so we get the same sequence of files from it repeatably.
-
Christian Couder authored
License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
this commit: * moves parsing of bootstrap peers into config * moves location of bootstrap addrs into core/commands * refactor `*BootstrapPeer -> BootstrapPeer
-
- 05 Jan, 2015 1 commit
-
-
Juan Batiz-Benet authored
-
- 04 Jan, 2015 1 commit
-
-
Juan Batiz-Benet authored
This commit cleans up how mounting was being done. It now successfully signals when it is properly mounted and listen to close signals correctly.
-
- 02 Jan, 2015 3 commits
-
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
The crypto package moves into p2p. Nothing in it so far is ipfs specific; everything is p2p-general.
-
Juan Batiz-Benet authored
I think it's time to move a lot of the peer-to-peer networking but-not-ipfs-specific things into its own package: p2p. This could in the future be split off into its own library. The first thing to go is the peer.
-
- 23 Dec, 2014 1 commit
-
-
Juan Batiz-Benet authored
this is a major refactor of the entire codebase it changes the monolithic peer.Peer into using a peer.ID and a peer.Peerstore. Other changes: - removed handshake3. - testutil vastly simplified peer - secio bugfix + debugging logs - testutil: RandKeyPair - backpressure bugfix: w.o.w. - peer: added hex enc/dec - peer: added a PeerInfo struct PeerInfo is a small struct used to pass around a peer with a set of addresses and keys. This is not meant to be a complete view of the system, but rather to model updates to the peerstore. It is used by things like the routing system. - updated peer/queue + peerset - latency metrics - testutil: use crand for PeerID gen RandPeerID generates random "valid" peer IDs. it does not NEED to generate keys because it is as if we lost the key right away. fine to read some randomness and hash it. to generate proper keys and an ID, use: sk, pk, _ := testutil.RandKeyPair() id, _ := peer.IDFromPublicKey(pk) Also added RandPeerIDFatal helper - removed old spipe - updated seccat - core: cleanup initIdentity - removed old getFromPeerList
-
- 16 Dec, 2014 1 commit
-
-
Juan Batiz-Benet authored
-
- 14 Dec, 2014 1 commit
-
-
Markus Amalthea Magnuson authored
”configurationx” -> ”configuration”
-
- 08 Dec, 2014 2 commits
-
-
Brian Tiger Chow authored
License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
-
Brian Tiger Chow authored
License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
-
- 06 Dec, 2014 6 commits
-
-
Juan Batiz-Benet authored
-
Brian Tiger Chow authored
@jbenet License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
-
Matt Bell authored
-
Brian Tiger Chow authored
License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
-
Brian Tiger Chow authored
It's better to have one mechanism for determining whether we're offline and to improve the SnR of this mechanism over time. We presently have too many arbitrary heuristics for determining whether we're running in offline mode. TRTTD is to use polymorphism to eliminate these conditional checks. (instantiate the node with offline versions of routing, network, etc.) It'll clean up the core constructor, make it easier to create ephemeral nodes, and eliminate a class of errors. @whyrusleeping @jbenet License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
-
Brian Tiger Chow authored
+ style: sort command list License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
-
- 01 Dec, 2014 2 commits
- 30 Nov, 2014 1 commit
-
-
Christian Couder authored
License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
- 19 Nov, 2014 12 commits
- 18 Nov, 2014 1 commit
-
-
Juan Batiz-Benet authored
-