Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2014-11-27 19:07:02 +0300
committerFeross Aboukhadijeh <feross@feross.org>2014-11-27 19:07:02 +0300
commitd54d4826eca9a43963e519f2b2193cf0d1a410a2 (patch)
tree027b2299a7f71c709d90157dbad85a391f59263e /bin
parentc7e2667dfeb8efdd53f9b043deccd580b9488203 (diff)
use localhost when possible
To fix this issue: https://github.com/mafintosh/peerflix/issues/136
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cmd.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/cmd.js b/bin/cmd.js
index b649f23..f4ea29b 100755
--- a/bin/cmd.js
+++ b/bin/cmd.js
@@ -246,6 +246,7 @@ function onReady () {
return a.length > b.length ? a : b
}))
var href = 'http://' + networkAddress() + ':' + argv.port + '/' + index
+ var localHref = 'http://localhost:' + argv.port + '/' + index
if (playerName) torrent.files[index].select()
if (argv.stdout) torrent.files[index].createReadStream().pipe(process.stdout)
@@ -266,7 +267,7 @@ function onReady () {
if (key) {
var vlcPath = key.InstallDir.value + path.sep + 'vlc'
VLC_ARGS = VLC_ARGS.split(' ')
- VLC_ARGS.unshift(href)
+ VLC_ARGS.unshift(localHref)
cp.execFile(vlcPath, VLC_ARGS, function (err) {
if (err) return errorAndExit(err)
done()
@@ -275,15 +276,15 @@ function onReady () {
} else if (argv.vlc) {
var root = '/Applications/VLC.app/Contents/MacOS/VLC'
var home = (process.env.HOME || '') + root
- cmd = 'vlc ' + href + ' ' + VLC_ARGS + ' || ' +
- root + ' ' + href + ' ' + VLC_ARGS + ' || ' +
- home + ' ' + href + ' ' + VLC_ARGS
+ cmd = 'vlc ' + localHref + ' ' + VLC_ARGS + ' || ' +
+ root + ' ' + localHref + ' ' + VLC_ARGS + ' || ' +
+ home + ' ' + localHref + ' ' + VLC_ARGS
} else if (argv.mplayer) {
- cmd = MPLAYER_EXEC + ' ' + href
+ cmd = MPLAYER_EXEC + ' ' + localHref
} else if (argv.mpv) {
- cmd = MPV_EXEC + ' ' + href
+ cmd = MPV_EXEC + ' ' + localHref
} else if (argv.omx) {
- cmd = OMX_EXEC + ' ' + href
+ cmd = OMX_EXEC + ' ' + localHref
}
if (cmd) {
@@ -372,7 +373,6 @@ function onReady () {
linesremaining -= 8
var pieces = torrent.storage.pieces
- var piecesBar = []
for(var i = 0; i < pieces.length; i++) {
var piece = pieces[i]
if (piece.verified || piece.blocksWritten === 0) {