comparison libpurple/protocols/gg/lib/http.c @ 32777:e2ff2ac0e022

Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
author tomkiewicz@cpw.pidgin.im
date Fri, 21 Oct 2011 12:48:30 +0000
parents ef01f180114b
children 4a34689eeb33
comparison
equal deleted inserted replaced
32776:8c71a7e95f16 32777:e2ff2ac0e022
23 * 23 *
24 * \brief Obsługa połączeń HTTP 24 * \brief Obsługa połączeń HTTP
25 */ 25 */
26 26
27 #include <sys/types.h> 27 #include <sys/types.h>
28 #ifndef _WIN32
29 # include <sys/socket.h>
30 # include <netinet/in.h>
31 # include <arpa/inet.h>
32 #endif
33 28
34 #include "compat.h" 29 #include "compat.h"
35 #include "libgadu.h" 30 #include "libgadu.h"
36 #include "resolver.h" 31 #include "resolver.h"
37 32
38 #include <ctype.h> 33 #include <ctype.h>
39 #include <errno.h> 34 #include <errno.h>
40 #ifndef _WIN32
41 # include <netdb.h>
42 #endif
43 #include <signal.h> 35 #include <signal.h>
44 #include <stdarg.h> 36 #include <stdarg.h>
45 #include <stdio.h> 37 #include <stdio.h>
46 #include <stdlib.h> 38 #include <stdlib.h>
47 #include <string.h> 39 #include <string.h>