Files
I2P_in_Private_Browsing_Mod…/config.js

63 lines
1.5 KiB
JavaScript
Raw Normal View History

2023-05-25 03:49:17 +00:00
function proxy_scheme() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageProxyScheme();
}
function proxy_host() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageHost();
}
function proxy_port() {
console.info("(config)Got i2p:", getFuncName());
return getFromStoragePort();
}
2020-01-14 23:31:41 -05:00
2023-05-25 03:49:17 +00:00
function control_host() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageControlHost();
}
2023-05-25 03:49:17 +00:00
function control_port() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageControlPort();
}
2020-01-14 23:31:41 -05:00
2023-05-25 03:49:17 +00:00
function rpc_host() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageRPCHost();
}
function rpc_port() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageRPCPort();
}
function rpc_path() {
console.info("(config)Got i2p:", getFuncName());
getFromStorageRPCPath();
}
function rpc_pass() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageRPCPass();
}
2020-01-14 23:31:41 -05:00
2023-05-25 03:49:17 +00:00
function bt_rpc_host() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageBTRPCHost();
}
function bt_rpc_port() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageBTRPCPort();
}
function bt_rpc_path() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageBTRPCPath();
}
function bt_rpc_pass() {
console.info("(config)Got i2p:", getFuncName());
return getFromStorageBTRPCPass();
}
function getFuncName() {
return getFuncName.caller.name;
}
2020-01-14 23:31:41 -05:00
var disable_history = false;