summaryrefslogtreecommitdiff
path: root/src/MySock.cpp
diff options
context:
space:
mode:
authorketsuban_152 <webmaster@dangofacotry.net>2026-08-09 12:26:17 +0900
committerketsuban_152 <webmaster@dangofacotry.net>2026-08-09 12:26:17 +0900
commit6cc8243218edbee7a56a17f4f2513edfcf350738 (patch)
tree07d4ba61281184a3d25ddd93c6fefc3eba309c73 /src/MySock.cpp
parent3d0a7e4adce1e050e309d90d1ee73ff784b704df (diff)
downloaddwgo-6cc8243218edbee7a56a17f4f2513edfcf350738.tar.gz
dwgo-6cc8243218edbee7a56a17f4f2513edfcf350738.tar.bz2
dwgo-6cc8243218edbee7a56a17f4f2513edfcf350738.zip
modified: src/MySock.cpp
modified: src/MySock.h modified: src/localtemp.cpp modified: src/localtemp.h
Diffstat (limited to 'src/MySock.cpp')
-rw-r--r--src/MySock.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/MySock.cpp b/src/MySock.cpp
index 6f73517..d998d4c 100644
--- a/src/MySock.cpp
+++ b/src/MySock.cpp
@@ -126,11 +126,11 @@ MySock::MySock(string uri)
}
else if (protostr=="https")
{
- if(this->safe_url(uri))
+ if(this->is_safe_url(uri))
{
- this->https_url=url;
+ this->https_uri=uri;
this->use_external_fetch=true;
- this->connection;
+ this->connected=true;
}
}
else