comparison src/core.c @ 8231:f50c059b6384

[gaim-migrate @ 8954] This is Tim Ringenbach's patch to move some IP-related functions into the new gaim_network namespace, improve the local IP checking functionality by opening a socket, change some prefs, and add the ability to modify these prefs in the UI. Some ft.c bugs were fixed, and OSCAR, Jabber and Yahoo were updated to reflect the changes. The DCC SEND portion of this patch was not committed, as per his request (unless I misunderstood? :) committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 12 Feb 2004 00:36:55 +0000
parents fa6395637e2c
children 63c7a16a2c09
comparison
equal deleted inserted replaced
8230:4e354776ae2a 8231:f50c059b6384
25 #include "internal.h" 25 #include "internal.h"
26 #include "connection.h" 26 #include "connection.h"
27 #include "conversation.h" 27 #include "conversation.h"
28 #include "core.h" 28 #include "core.h"
29 #include "debug.h" 29 #include "debug.h"
30 #include "ft.h" 30 #include "network.h"
31 #include "plugin.h" 31 #include "plugin.h"
32 #include "pounce.h" 32 #include "pounce.h"
33 #include "prefs.h" 33 #include "prefs.h"
34 #include "privacy.h" 34 #include "privacy.h"
35 #include "proxy.h" 35 #include "proxy.h"
86 gaim_connections_init(); 86 gaim_connections_init();
87 gaim_conversations_init(); 87 gaim_conversations_init();
88 gaim_blist_init(); 88 gaim_blist_init();
89 gaim_log_init(); 89 gaim_log_init();
90 gaim_buddy_icons_init(); 90 gaim_buddy_icons_init();
91 gaim_network_init();
91 gaim_privacy_init(); 92 gaim_privacy_init();
92 gaim_pounces_init(); 93 gaim_pounces_init();
93 gaim_proxy_init(); 94 gaim_proxy_init();
94 gaim_sound_init(); 95 gaim_sound_init();
95 gaim_ssl_init(); 96 gaim_ssl_init();
96 gaim_xfers_init();
97 97
98 if (ops != NULL && ops->ui_init != NULL) 98 if (ops != NULL && ops->ui_init != NULL)
99 ops->ui_init(); 99 ops->ui_init();
100 100
101 return TRUE; 101 return TRUE;