[SON for Hive] - Implement HTTPS RPC client #610

Merged
serkixenos merged 18 commits from feature/son-for-hive-https-support into feature/son-for-hive 2021-10-25 15:18:33 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 6618745cf7 - Show all commits

1
.gitignore vendored
View file

@ -14,6 +14,7 @@ data
CMakeDoxyfile.in
build
build__*
libraries/utilities/git_revision.cpp

View file

@ -109,7 +109,7 @@ fc::http::reply rpc_client::send_post_request(std::string body, bool show_log) {
HttpsCall call(ip, port);
HttpRequest response;
HttpResponse response;
fc::http::reply reply;
@ -128,7 +128,7 @@ fc::http::reply rpc_client::send_post_request(std::string body, bool show_log) {
}
return reply;
/*
fc::http::connection conn;
conn.connect_to(fc::ip::endpoint(fc::ip::address(ip), port));
@ -148,6 +148,7 @@ fc::http::reply rpc_client::send_post_request(std::string body, bool show_log) {
}
return reply;
*/
}
}} // namespace graphene::peerplays_sidechain