- 05 Jan, 2015 25 commits
-
-
Brian Tiger Chow authored
Without `-f`, `make clean` fails on machines that don't have the dir. cc @jbenet
-
Brian Tiger Chow authored
@jbenet @whyrusleeping This bug (missing return) could tie up the client worker and cause operations to come to a halt.
-
Juan Batiz-Benet authored
utp is BROKEN!! it causes tests to fail.
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
we shouldn't use an arbitrary timeout here. since Get doesnt take in a context yet, we give a large upper bound. think of an http request. we want it to go on as long as the client requests it.
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
this commit adds a logger with prefixes
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
fix sharness test for ipfs init output
-
Juan Batiz-Benet authored
-
Jeromy authored
-
Juan Batiz-Benet authored
sharness: verbose output
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
Make sharness tests' output helpful when verbose. This means cating certain files, or running diagnostic commands. I used a construction like: test_expect_success ".go-ipfs/ has been created" ' test -d ".go-ipfs" && test -f ".go-ipfs/config" && test -d ".go-ipfs/datastore" || fsh ls -al .go-ipfs ' The `|| ...` is a diagnostic run when the preceding command fails. `fsh` is a trivial script that echoes the args, runs the cmd, and then also fails, making sure the test case fails. (wouldnt want the diagnostic accidentally returning true and making it _seem_ like the test case succeeded).
-
Juan Batiz-Benet authored
-
- 04 Jan, 2015 6 commits
-
-
Juan Batiz-Benet authored
mount fixes
-
Juan Batiz-Benet authored
-
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.
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
Stream relaying
-
- 02 Jan, 2015 9 commits
-
-
Juan Batiz-Benet authored
not sure how it wasnt an error
-
Juan Batiz-Benet authored
This commit makes all network tests use ZeroLocalTCPAddress as the initial peer address, and then relies on net.ListenAddresses() This should get rid of the tcp addr clash problems.
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
The separation of work in the p2p pkg is as follows: - net implements the Swarm and connectivity - protocol has muxer and header protocols - host implements protocol muxing + services - identify took over handshake completely! yay. - p2p package works as a whole
-
Juan Batiz-Benet authored
using a placeholder net2 package so tests continue to pass. Will be swapped atomically into main code.
-
Juan Batiz-Benet authored
remove comment about spdystream. this is now superceded by go-peerstream interface.
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-