Prevent stateful powerwash when returning to verified
This commit is contained in:
parent
5591a5ce07
commit
5ad24ae697
@ -8,6 +8,7 @@ const axios = require('axios').default;
|
|||||||
* @param {import("../../proxy").FilterInfo} f
|
* @param {import("../../proxy").FilterInfo} f
|
||||||
*/
|
*/
|
||||||
function filter(f) {
|
function filter(f) {
|
||||||
|
console.log(f.tls);
|
||||||
if (f.tls) {
|
if (f.tls) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
4
proxy.js
4
proxy.js
@ -236,7 +236,7 @@ server.on('error', (err) => {
|
|||||||
server.on('close', () => {
|
server.on('close', () => {
|
||||||
console.log('Client Disconnected');
|
console.log('Client Disconnected');
|
||||||
});
|
});
|
||||||
server.listen(8125, () => {
|
server.listen(8126, () => {
|
||||||
console.log('Server running at http://localhost:' + 8125);
|
console.log('Server running at http://localhost:' + 8126);
|
||||||
});
|
});
|
||||||
//Source code below is for creating a mini server or a server that serves requests within memory.(or not)
|
//Source code below is for creating a mini server or a server that serves requests within memory.(or not)
|
||||||
|
Reference in New Issue
Block a user