socks5server
Advanced tools
Comparing version 3.0.1 to 3.0.2
{ | ||
"name": "socks5server", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "A simple SOCKS 5/4/4a implementation and demo proxy", | ||
@@ -8,8 +8,9 @@ "author": [ | ||
"Tom Zhou <iwebpp@gmail.com>", | ||
"Tgohanwotabe <gohanwotabe@gmail.com>" | ||
"gohanwotabe <gohanwotabe@gmail.com>" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:dangoco/socks5-server.git" | ||
"url": "git@github.com:dangoco/socks5server.git" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
@@ -16,0 +17,0 @@ "socks", |
@@ -32,2 +32,7 @@ | ||
proxy.on('error',e=>{ | ||
console.error('connection error:',e); | ||
server.emit('connection_error',e); | ||
}); | ||
socket.on('error',e=>{ | ||
console.error('proxy error:',e); | ||
server.emit('proxy_error',e); | ||
@@ -34,0 +39,0 @@ }); |
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
12199
365