Mercurial > pidgin.yaz
comparison libpurple/proxy.c @ 32476:ba74745ff179
Hide PurpleProxyInfo struct.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Fri, 02 Sep 2011 02:42:39 +0000 |
parents | f22bc8b5b9dc |
children | 06e0b6be6432 |
comparison
equal
deleted
inserted
replaced
32475:32e8cdf1833c | 32476:ba74745ff179 |
---|---|
38 #include "notify.h" | 38 #include "notify.h" |
39 #include "ntlm.h" | 39 #include "ntlm.h" |
40 #include "prefs.h" | 40 #include "prefs.h" |
41 #include "proxy.h" | 41 #include "proxy.h" |
42 #include "util.h" | 42 #include "util.h" |
43 | |
44 struct _PurpleProxyInfo | |
45 { | |
46 PurpleProxyType type; /**< The proxy type. */ | |
47 | |
48 char *host; /**< The host. */ | |
49 int port; /**< The port number. */ | |
50 char *username; /**< The username. */ | |
51 char *password; /**< The password. */ | |
52 }; | |
43 | 53 |
44 struct _PurpleProxyConnectData { | 54 struct _PurpleProxyConnectData { |
45 void *handle; | 55 void *handle; |
46 PurpleProxyConnectFunction connect_cb; | 56 PurpleProxyConnectFunction connect_cb; |
47 gpointer data; | 57 gpointer data; |