You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Compeer implementation is now almost ready. What's missing is a dedicated Review for its featureset and the integration of peers to the Settings in the Browser Profile and the stealth.peers[] Array that contains active Peer connections.
Services: Implement a better Peer Settings structure.
Compeer: Implement this.services.peer API integration that creates a Peer (if it doesn't exist) or updates a Peer (if it exists) Setting.
Implement stealth/server/Compeer Review.
Fix/Update stealth/server/service/Peer Review.
letpeer_setting={domain: 'hostname'||'username.tholian.local',peer: {connection: 'mobile',// internet.connection settingcertificate: 'hash_value'||null,// hash of peer certificate for cert pinning. No certificate means no secure connectionversion: '2021:X0'// Stealth.VERSION to reflect API compatibility}};
The text was updated successfully, but these errors were encountered:
The Peerer should manage the task of local and global peer discovery, and add the responses accordingly to the this.stealth.settings.peers[] array (and settings.hosts[]).
In order to clean up the Peer Service, the proxy() method has been removed, and instead the SOCKS and HTTPS Proxy should now be used to achieve the same effect of relaying network traffic. However, the following use cases have not been solved yet:
receive() should save ServiceDiscoveryResponses into settings.peers[]
resolve() DNS requests to other domains via known local Peers on port 65432, use a Ronin mechanism to select peers at random, if unsuccessful repeat max 3 times.
resolve() local Peer domains (*.tholian.local) via settings.peers[] and settings.hosts[].
cookiengineer
changed the title
Stealth: Compeer Server Middleware
Stealth: Peerer Server Middleware
Sep 6, 2021
The
Compeer
implementation is now almost ready. What's missing is a dedicatedReview
for its featureset and the integration of peers to the Settings in the Browser Profile and thestealth.peers[]
Array that contains active Peer connections.Peer
Settings structure.this.services.peer
API integration that creates a Peer (if it doesn't exist) or updates a Peer (if it exists) Setting.stealth/server/Compeer
Review.stealth/server/service/Peer
Review.The text was updated successfully, but these errors were encountered: