MCPcopy Create free account
hub / github.com/VCVRack/Rack / getCookieString

Function getCookieString

src/network.cpp:58–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56
57
58static std::string getCookieString(const CookieMap& cookies) {
59 std::string s;
60 for (const auto& pair : cookies) {
61 s += encodeUrl(pair.first);
62 s += "=";
63 s += encodeUrl(pair.second);
64 s += ";";
65 }
66 return s;
67}
68
69
70void init() {

Callers 2

requestJsonFunction · 0.85
requestDownloadFunction · 0.85

Calls 1

encodeUrlFunction · 0.85

Tested by

no test coverage detected