comment explaining proxified-container.js:parseProxy

This commit is contained in:
Samuel Crypto 2018-10-28 15:33:35 -04:00
parent 0e8653129a
commit f211872796

View file

@ -126,6 +126,8 @@ proxifiedContainers = {
});
});
},
//Parses a proxy description string of the format host[:port] or username:password@[host:port] (port is optional)
parseProxy(proxy_str) {
const regexp = /(\b(\w+):(\w+)@)?(((?:\d{1,3}\.){3}\d{1,3}\b)|(\b(\w+)(\.(\w+))+))(:(\d+))?/;
if (regexp.test(proxy_str) !== true)