Created
February 15, 2022 21:21
-
-
Save drunderscore/0589426686ab3387aee60e43de54964f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <LibCore/EventLoop.h> | |
#include <LibCore/Stream.h> | |
#include <LibHTTP/HttpRequest.h> | |
#include <LibHTTP/HttpsJob.h> | |
#include <LibMain/Main.h> | |
ErrorOr<int> serenity_main(Main::Arguments) | |
{ | |
Core::EventLoop event_loop; | |
HTTP::HttpRequest request; | |
request.set_url("https://google.com"); | |
request.set_method(HTTP::HttpRequest::Method::GET); | |
auto output_stream = TRY(Core::Stream::File::open("fuck.html"sv, Core::Stream::OpenMode::Write)); | |
auto job = TRY(HTTP::HttpsJob::try_create(move(request), *output_stream)); | |
job->on_finish = [](auto success) { outln("oh fuck yeah we finished, success {}", success); }; | |
// Google IP address here | |
auto socket = TRY(Core::Stream::TCPSocket::connect("142.251.32.110", 443)); | |
outln("ok gonna start"); | |
job->start(*socket); | |
outln("exec ing"); | |
return event_loop.exec(); | |
} |
Author
drunderscore
commented
Feb 15, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment