comparison src/protocols/jabber/jabber.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 424a40f12a6c
children 1a6d3f3bc682
comparison
equal deleted inserted replaced
3629:afc5bb164c5a 3630:9682c0e022c6
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 * 15 *
16 * Jabber 16 * Jabber
17 * Copyright (C) 1998-1999 The Jabber Team http://jabber.org/ 17 * Copyright (C) 1998-1999 The Jabber Team http://jabber.org/
18 */ 18 */
19 #ifndef _WIN32
20 #include <syslog.h>
21 #include <sys/socket.h>
22 #include <netinet/in.h>
23 #include <netdb.h>
24 #include <arpa/inet.h>
25 #include <strings.h>
26 #include <unistd.h>
27 #else
28 #include <winsock.h>
29 #include "win32dep.h"
30 #endif
19 31
20 #include <string.h> 32 #include <string.h>
21 #include <stdlib.h> 33 #include <stdlib.h>
22 #include <sys/types.h> 34 #include <sys/types.h>
23 #include <stdio.h> 35 #include <stdio.h>
25 #include <sys/stat.h> 37 #include <sys/stat.h>
26 #include <fcntl.h> 38 #include <fcntl.h>
27 #include <errno.h> 39 #include <errno.h>
28 #include <signal.h> 40 #include <signal.h>
29 #include <stdarg.h> 41 #include <stdarg.h>
30 #include <syslog.h>
31 #include <strings.h>
32 #include <unistd.h>
33 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <netdb.h>
36 #include <arpa/inet.h>
37 #include <sys/time.h> 42 #include <sys/time.h>
38 #include <time.h> 43 #include <time.h>
39 #include <ctype.h> 44 #include <ctype.h>
40 45
41 #include "libxode.h" 46 #include "libxode.h"