comparison src/proxy.h @ 3630:9682c0e022c6

[gaim-migrate @ 3753] Yeah this will probably break a lot of shit knowing my luck. But hey, I really don't care what people thnk. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 11 Oct 2002 03:14:01 +0000
parents 5473c8c5378d
children 1a6d3f3bc682
comparison
equal deleted inserted replaced
3629:afc5bb164c5a 3630:9682c0e022c6
24 with some kind of transparent layer */ 24 with some kind of transparent layer */
25 25
26 #ifndef _PROXY_H_ 26 #ifndef _PROXY_H_
27 #define _PROXY_H_ 27 #define _PROXY_H_
28 28
29 #include <sys/types.h> 29 #ifndef _WIN32
30 #include <sys/socket.h> 30 #include <sys/socket.h>
31 #include <netdb.h> 31 #include <netdb.h>
32 #include <netinet/in.h> 32 #include <netinet/in.h>
33 #else
34 #include <winsock.h>
35 #endif
36
37 #include <sys/types.h>
33 #include <glib.h> 38 #include <glib.h>
34 39
35 #define PROXY_NONE 0 40 #define PROXY_NONE 0
36 #define PROXY_HTTP 1 41 #define PROXY_HTTP 1
37 #define PROXY_SOCKS4 2 42 #define PROXY_SOCKS4 2