comparison src/protocols/oscar/oscar.c @ 12412:a88ca6da0b38

[gaim-migrate @ 14719] Make some functions static. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Thu, 08 Dec 2005 21:00:39 +0000
parents a2f7bb907926
children 98be11e744a8
comparison
equal deleted inserted replaced
12411:8c339d9f1bb4 12412:a88ca6da0b38
594 *charset = AIM_CHARSET_ASCII; 594 *charset = AIM_CHARSET_ASCII;
595 *charsubset = 0x0000; 595 *charsubset = 0x0000;
596 return; 596 return;
597 } 597 }
598 598
599 gchar *oscar_caps_to_string(guint caps) 599 static gchar *oscar_caps_to_string(guint caps)
600 { 600 {
601 GString *str; 601 GString *str;
602 gchar *tmp; 602 gchar *tmp;
603 guint bit = 1; 603 guint bit = 1;
604 604
2245 2245
2246 /* 2246 /*
2247 * Called by oscar_send_proxylogin_cb when we receive a ready packet 2247 * Called by oscar_send_proxylogin_cb when we receive a ready packet
2248 * BBB 2248 * BBB
2249 */ 2249 */
2250 void oscar_xfer_proxylogin_ready(GaimXfer *xfer, gint fd) { 2250 static void oscar_xfer_proxylogin_ready(GaimXfer *xfer, gint fd) {
2251 struct aim_oft_info *oft_info; 2251 struct aim_oft_info *oft_info;
2252 struct aim_rv_proxy_info *proxy_info; 2252 struct aim_rv_proxy_info *proxy_info;
2253 2253
2254 gaim_debug_info("oscar","AAA - in oscar_xfer_proxylogin_ready\n"); 2254 gaim_debug_info("oscar","AAA - in oscar_xfer_proxylogin_ready\n");
2255 if (!(oft_info = xfer->data)) { 2255 if (!(oft_info = xfer->data)) {
2297 2297
2298 /* 2298 /*
2299 * Called by oscar_sendfile_proxylogin_cb when we receive an ack packet in reply to an init_send 2299 * Called by oscar_sendfile_proxylogin_cb when we receive an ack packet in reply to an init_send
2300 * BBB 2300 * BBB
2301 */ 2301 */
2302 void oscar_xfer_proxylogin_ack(GaimXfer *xfer) { 2302 static void oscar_xfer_proxylogin_ack(GaimXfer *xfer) {
2303 struct aim_oft_info *oft_info; 2303 struct aim_oft_info *oft_info;
2304 struct aim_rv_proxy_info *proxy_info; 2304 struct aim_rv_proxy_info *proxy_info;
2305 2305
2306 gaim_debug_info("oscar","AAA - in oscar_xfer_proxylogin_ack\n"); 2306 gaim_debug_info("oscar","AAA - in oscar_xfer_proxylogin_ack\n");
2307 if (!(oft_info = xfer->data)) { 2307 if (!(oft_info = xfer->data)) {
7362 m = g_list_append(m, pce); 7362 m = g_list_append(m, pce);
7363 7363
7364 return m; 7364 return m;
7365 } 7365 }
7366 7366
7367 GHashTable *oscar_chat_info_defaults(GaimConnection *gc, const char *chat_name) 7367 static GHashTable *oscar_chat_info_defaults(GaimConnection *gc, const char *chat_name)
7368 { 7368 {
7369 GHashTable *defaults; 7369 GHashTable *defaults;
7370 7370
7371 defaults = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_free); 7371 defaults = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_free);
7372 7372