net_http_test.c - cleanups

This commit is contained in:
Twinaphex 2015-01-24 08:48:04 +01:00
parent f7e45f7753
commit 0f58d4d148

View File

@ -8,27 +8,27 @@
int main(void)
{
#ifdef _WIN32
WSADATA wsaData;
WSAStartup(MAKEWORD(2, 2), &wsaData);
WSADATA wsaData;
WSAStartup(MAKEWORD(2, 2), &wsaData);
#endif
char *w;
http_t *http1, *http2, *http3;
size_t len, pos = 0; size_t tot = 0;
char *data;
http_t *http1, *http2, *http3;
size_t len, pos = 0, tot = 0;
http1 = net_http_new("http://buildbot.libretro.com/nightly/win-x86/latest/mednafen_psx_libretro.dll.zip");
http1 = net_http_new("http://buildbot.libretro.com/nightly/win-x86/latest/mednafen_psx_libretro.dll.zip");
while (!net_http_update(http1, &pos, &tot))
printf("%.9lu / %.9lu \r",pos,tot);
while (!net_http_update(http1, &pos, &tot))
printf("%.9lu / %.9lu \r",pos,tot);
http3 = net_http_new("http://www.wikipedia.org/");
while (!net_http_update(http3, NULL, NULL)) {}
http3 = net_http_new("http://www.wikipedia.org/");
while (!net_http_update(http3, NULL, NULL)) {}
w = (char*)net_http_data(http3, &len, false);
data = (char*)net_http_data(http3, &len, false);
printf("%.*s\n", (int)256, w);
printf("%.*s\n", (int)256, data);
net_http_delete(http1);
net_http_delete(http3);
net_http_delete(http1);
net_http_delete(http3);
return 0;
}