| 16 * You should have received a copy of the GNU General Public License |
16 * You should have received a copy of the GNU General Public License |
| 17 * along with this program; if not, write to the Free Software |
17 * along with this program; if not, write to the Free Software |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 * |
19 * |
| 20 */ |
20 */ |
| 21 |
21 #include "internal.h" |
| 22 |
22 |
| 23 |
23 #include "account.h" |
| 24 #ifdef HAVE_CONFIG_H |
24 #include "accountopt.h" |
| 25 #include <config.h> |
25 #include "conversation.h" |
| 26 #endif |
26 #include "debug.h" |
| 27 |
|
| 28 #ifndef _WIN32 |
|
| 29 #include <netdb.h> |
|
| 30 #include <unistd.h> |
|
| 31 #include <netinet/in.h> |
|
| 32 #include <arpa/inet.h> |
|
| 33 #include <sys/socket.h> |
|
| 34 #else |
|
| 35 #include <winsock.h> |
|
| 36 #endif |
|
| 37 |
|
| 38 #include <gtk/gtk.h> |
|
| 39 #include <errno.h> |
|
| 40 #include <string.h> |
|
| 41 #include <stdlib.h> |
|
| 42 #include <stdio.h> |
|
| 43 #include <time.h> |
|
| 44 #include <sys/types.h> |
|
| 45 #include <sys/stat.h> |
|
| 46 #include "prpl.h" |
27 #include "prpl.h" |
| 47 #include "accountopt.h" |
|
| 48 #include "multi.h" |
28 #include "multi.h" |
| |
29 #include "notify.h" |
| |
30 #include "proxy.h" |
| |
31 #include "request.h" |
| |
32 #include "util.h" |
| |
33 |
| |
34 /* XXX */ |
| 49 #include "gaim.h" |
35 #include "gaim.h" |
| 50 #include "proxy.h" |
36 #include "ui.h" |
| 51 |
|
| 52 #ifdef _WIN32 |
|
| 53 #include "win32dep.h" |
|
| 54 #endif |
|
| 55 |
37 |
| 56 static GaimPlugin *my_protocol = NULL; |
38 static GaimPlugin *my_protocol = NULL; |
| 57 |
39 |
| 58 #define REVISION "penguin" |
40 #define REVISION "penguin" |
| 59 |
41 |