30 lines
503 B
C++
30 lines
503 B
C++
#include "pch.h"
|
|
#include "Util.h"
|
|
|
|
const std::vector<std::string> Util::allowedHosts
|
|
{
|
|
"polygon.pizzaboxer.xyz",
|
|
"polygondev.pizzaboxer.xyz",
|
|
"polygonapi.pizzaboxer.xyz",
|
|
|
|
"roblox.com",
|
|
"www.roblox.com",
|
|
"assetdelivery.roblox.com",
|
|
|
|
"tadah.rocks",
|
|
"www.tadah.rocks"
|
|
};
|
|
|
|
const std::vector<std::string> Util::allowedSchemes
|
|
{
|
|
"http",
|
|
"https",
|
|
"ftp"
|
|
};
|
|
|
|
const std::vector<std::string> Util::allowedEmbeddedSchemes
|
|
{
|
|
"javascript",
|
|
"jscript",
|
|
"res"
|
|
}; |