Skip to content

Commit 61b57c7

Browse files
committed
use appnet.link literal
1 parent cb27c49 commit 61b57c7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ Expose Web Service from Peer
1313
* Token-based authentication based on user's IP address
1414
* Rewrite location header in 3XX redirection response
1515
* Rewrite href in 2XX text/html response
16-
* Run over STUN session with iwebpp.io-stun-proxy
16+
* Run over STUN session with appnet.io-stun-proxy
1717
* Proxy web server dynamically on fly
1818
* Http basic-auth support
1919

2020
### Install
2121
* npm install peer-proxy, or git clone [peer-proxy](https://github.com/InstantWebP2P/peer-proxy.git) && cd peer-proxy && npm install
2222
* peer-proxy depend on node-httpp, please build it from repo [node-httpp](https://github.com/InstantWebP2P/node-httpp)
23-
* setup your own iWebPP.io backend controller services refer to [AppNet.io-controller](https://github.com/InstantWebP2P/appnet.io-controller)
23+
* setup your own AppNet.io backend controller services refer to [AppNet.io-controller](https://github.com/InstantWebP2P/appnet.io-controller)
2424

2525
### Usage/API:
2626

@@ -46,7 +46,7 @@ Expose Web Service from Peer
4646
4. in case the local http server run on localhost with port 3000, do ./bin/peer-proxy -t http://localhost:3000
4747
if it's https server on port 3000, do ./bin/peer-proxy -t https://localhost:3000
4848
49-
5. run over STUN with iwebpp.io-stun-proxy, just embed 'vlocal.' as sub-domain in origin vURL,
49+
5. run over STUN with appnet.io-stun-proxy, just embed 'vlocal.' as sub-domain in origin vURL,
5050
like https://zc5a93bdde908a92cs.d4ddf763050ab93e.vurl.vlocal.51dese.com:51688//vtoken/8bb975c3385f47f3
5151

5252
### TODO:
@@ -64,7 +64,7 @@ Expose Web Service from Peer
6464

6565
(The MIT License)
6666

67-
Copyright (c) 2012-present Tom Zhou(iwebpp@gmail.com)
67+
Copyright (c) 2012-present Tom Zhou(appnet.link@gmail.com)
6868

6969
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7070

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Peer proxy
2-
// Copyright (c) 2012 Tom Zhou<iwebpp@gmail.com>
2+
// Copyright (c) 2012 Tom Zhou<appnet.link@gmail.com>
33

44
// Proxy
55
exports = module.exports = require('./lib/proxy');

lib/proxy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2013 Tom Zhou<iwebpp@gmail.com>
1+
// Copyright (c) 2013 Tom Zhou<appnet.link@gmail.com>
22

33
var WEBPP = require('appnet.io'),
44
SEP = WEBPP.SEP,
@@ -28,7 +28,7 @@ var siphash = require('siphash'),
2828
var Debug = 0;
2929

3030
// Proxy class
31-
// a proxy will contain one iwebpp.io name-client
31+
// a proxy will contain one appnet.io name-client
3232
// - websites: array of web site/service URL, like ['http://sohu.com', 'https://google.com']
3333
// - fn: callback to pass proxy informations
3434
// - options: user custom parameters, like {secmode: ..., usrkey: ..., mode: ..., domain: ..., endpoints: ..., turn: ...}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"author": "Tom Zhou <iwebpp@gmail.com> (https://aiworkspace.com)",
2+
"author": "Tom Zhou <appnet.link@gmail.com> (https://appnet.link)",
33
"name": "peer-proxy",
44
"description": "Proxy web service from peer",
5-
"version": "3.3.0",
5+
"version": "3.3.1",
66
"repository": {
77
"type": "git",
88
"url": "git://github.com/InstantWebP2P/peer-proxy.git"

0 commit comments

Comments
 (0)