Browse Source

Setting reliable to false by default

ericz 11 years ago
parent
commit
b474a4cba6
3 changed files with 2 additions and 2 deletions
  1. 1 1
      dist/peer.js
  2. 0 0
      dist/peer.min.js
  3. 1 1
      lib/dataconnection.js

+ 1 - 1
dist/peer.js

@@ -1696,7 +1696,7 @@ function DataConnection(peer, provider, options) {
   // TODO: perhaps default serialization should be binary-utf8?
   this.options = util.extend({
     serialization: 'binary',
-    reliable: true
+    reliable: false
   }, options);
 
   // Connection is not open yet.

File diff suppressed because it is too large
+ 0 - 0
dist/peer.min.js


+ 1 - 1
lib/dataconnection.js

@@ -8,7 +8,7 @@ function DataConnection(peer, provider, options) {
   // TODO: perhaps default serialization should be binary-utf8?
   this.options = util.extend({
     serialization: 'binary',
-    reliable: true
+    reliable: false
   }, options);
 
   // Connection is not open yet.

Some files were not shown because too many files changed in this diff