git-svn-id: svn://ultimatepp.org/upp/trunk@4860 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-04-27 07:57:44 +00:00
parent 17b96b3066
commit 42ac1d494e
20 changed files with 444 additions and 173 deletions

View file

@ -1,8 +1,13 @@
#include <Web/Web.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
Cout() << HttpClient("www.rosettacode.org").ExecuteRedirect();
}
#include <Web/SSL/SSL.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
HttpClient::Trace();
HttpsClient h;
h.URL("www.google.com");
h.Proxy("90.182.182.154", 8080);
DDUMP(h.ExecuteRedirect());
}