Skip to content

Commit a83ddb2

Browse files
committed
npm version
1 parent dec8880 commit a83ddb2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
proxy.stream
22
============
3+
[![npm version](https://badge.fury.io/js/proxy.stream.svg)](https://badge.fury.io/js/proxy.stream)
34

45
It's a nodejs proxy, implemented steam interface, supports socks4, socks4a, socks5 and http.
56

lib/connector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ util.inherits(Connector, events.EventEmitter);
193193
socket = net.connect(endpoint.port, endpoint.host, function () {
194194
self.emit('result', null, this);
195195
}).on('error', function () {
196-
self.emit('result', 'Connect to [' + endpoint.host + ':' + endpoint.port + '] failed', this);
196+
self.emit('result', 'connect to [' + endpoint.host + ':' + endpoint.port + '] failed', this);
197197
});
198198
break;
199199
}

0 commit comments

Comments
 (0)