This commit is contained in:
VincentChanX
2017-04-05 19:41:04 +08:00
parent 46c69e2059
commit 9e0dafcaa0
5 changed files with 410 additions and 0 deletions

9
server.js Normal file
View File

@@ -0,0 +1,9 @@
const {TCPRelay} = require('./tcprelay');
new TCPRelay({
localAddress: '127.0.0.1',
localPort: 1080,
serverAddress: '127.0.0.1',
serverPort: 21001,
password: 'ourvpn01010101',
method: "aes-256-cfb"
}, false, 'error').bootstrap();