Skip to content

Commit

Permalink
disable utp
Browse files Browse the repository at this point in the history
utp is BROKEN!! it causes tests to fail.
  • Loading branch information
jbenet committed Jan 3, 2015
1 parent 0630d11 commit 85833dc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmd/ipfs/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func initConfig(configFilename string, dspathOverride string, nBitsForKeypair in
Addresses: config.Addresses{
Swarm: []string{
"/ip4/0.0.0.0/tcp/4001",
"/ip4/0.0.0.0/udp/4002/utp",
// "/ip4/0.0.0.0/udp/4002/utp", // disabled for now.
},
API: "/ip4/127.0.0.1/tcp/5001",
},
Expand Down
3 changes: 1 addition & 2 deletions dockertest/bootstrap/config
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
},
"Addresses": {
"Swarm": [
"/ip4/0.0.0.0/tcp/4011",
"/ip4/0.0.0.0/udp/4012/utp"
"/ip4/0.0.0.0/tcp/4011"
],
"API": "/ip4/127.0.0.1/tcp/5001"
},
Expand Down
3 changes: 1 addition & 2 deletions dockertest/client/config
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"Addresses": {
"API": "/ip4/127.0.0.1/tcp/5001",
"Swarm": [
"/ip4/0.0.0.0/tcp/4031",
"/ip4/0.0.0.0/udp/4032/utp"
"/ip4/0.0.0.0/tcp/4031"
]
},
"Bootstrap": [
Expand Down
3 changes: 1 addition & 2 deletions dockertest/server/config
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"Addresses": {
"API": "/ip4/127.0.0.1/tcp/5001",
"Swarm": [
"/ip4/0.0.0.0/tcp/4021",
"/ip4/0.0.0.0/udp/4022/utp"
"/ip4/0.0.0.0/tcp/4021"
]
},
"Bootstrap": [
Expand Down

0 comments on commit 85833dc

Please sign in to comment.