comparison src/core.c @ 10684:72a5babfa8b4

[gaim-migrate @ 12231] the cipher api that grim has been working on for ages is finally done!! big congrats and thanks to him!! lots of modified files in this commit. it builds here. moved the md5 files to src/protocols/oscar so that it continues to depend on nothing in gaim. everything else uses the new centralized cipher api. I'm not sure if src/md5.* needs to be removed or not, so I left it there. someone let me know or do it directly. someone check if these need to be added to potfiles.in and let there be much rejoicing! committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 11 Mar 2005 13:05:31 +0000
parents 1a97d5e88d12
children 50224ac8184d
comparison
equal deleted inserted replaced
10683:e11f3e1599d4 10684:72a5babfa8b4
21 * You should have received a copy of the GNU General Public License 21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software 22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */ 24 */
25 #include "internal.h" 25 #include "internal.h"
26 #include "cipher.h"
26 #include "connection.h" 27 #include "connection.h"
27 #include "conversation.h" 28 #include "conversation.h"
28 #include "core.h" 29 #include "core.h"
29 #include "debug.h" 30 #include "debug.h"
30 #include "network.h" 31 #include "network.h"
94 } 95 }
95 96
96 gaim_status_init(); 97 gaim_status_init();
97 gaim_savedstatuses_init(); 98 gaim_savedstatuses_init();
98 gaim_accounts_init(); 99 gaim_accounts_init();
100 gaim_ciphers_init();
99 gaim_connections_init(); 101 gaim_connections_init();
100 gaim_conversations_init(); 102 gaim_conversations_init();
101 gaim_debug_init(); 103 gaim_debug_init();
102 gaim_blist_init(); 104 gaim_blist_init();
103 gaim_log_init(); 105 gaim_log_init();
131 133
132 /* Save .xml files, remove signals, etc. */ 134 /* Save .xml files, remove signals, etc. */
133 gaim_ssl_uninit(); 135 gaim_ssl_uninit();
134 gaim_pounces_uninit(); 136 gaim_pounces_uninit();
135 gaim_blist_uninit(); 137 gaim_blist_uninit();
138 gaim_ciphers_uninit();
136 gaim_conversations_uninit(); 139 gaim_conversations_uninit();
137 gaim_connections_uninit(); 140 gaim_connections_uninit();
138 gaim_buddy_icons_uninit(); 141 gaim_buddy_icons_uninit();
139 gaim_accounts_uninit(); 142 gaim_accounts_uninit();
140 gaim_savedstatuses_uninit(); 143 gaim_savedstatuses_uninit();