comparison src/protocols/bonjour/jabber.c @ 11688:1fd2a974379f

[gaim-migrate @ 13974] This stuff theoretically should work on win32 now. I'm not particularly happy with my howl binary, so I'll keep it to myself for now. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 17 Oct 2005 21:47:15 +0000
parents 5a2c38d33eb4
children b91a84e7cbcb
comparison
equal deleted inserted replaced
11687:941aa045f9f6 11688:1fd2a974379f
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */ 21 */
22 22 #ifndef _WIN32
23 #include <sys/socket.h> 23 #include <sys/socket.h>
24 #include <sys/types.h>
25 #include <netinet/in.h> 24 #include <netinet/in.h>
26 #include <arpa/inet.h> 25 #include <arpa/inet.h>
26 #else
27 #include "libc_interface.h"
28 #endif
29 #include <sys/types.h>
27 #include <glib.h> 30 #include <glib.h>
28 #include <glib/gprintf.h> 31 #include <glib/gprintf.h>
29 #include <unistd.h> 32 #include <unistd.h>
30 #include <fcntl.h> 33 #include <fcntl.h>
31 34