comparison src/protocols/rendezvous/rendezvous.c @ 9318:01c50436203e

[gaim-migrate @ 10126] i think this is more intelligent scaling. it would certainly be hard for it to be less intelligent scaling committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 19 Jun 2004 17:34:29 +0000
parents 78ccbda4c916
children ef79ee090cc5
comparison
equal deleted inserted replaced
9317:8e1ddf5d81d0 9318:01c50436203e
636 { 636 {
637 GaimAccountUserSplit *split; 637 GaimAccountUserSplit *split;
638 GaimAccountOption *option; 638 GaimAccountOption *option;
639 char hostname[255]; 639 char hostname[255];
640 640
641 prpl_info.api_version = GAIM_PRPL_API_VERSION; 641 prpl_info.api_version = GAIM_PRPL_API_VERSION;
642 prpl_info.options = OPT_PROTO_NO_PASSWORD; 642 prpl_info.options = OPT_PROTO_NO_PASSWORD;
643 prpl_info.icon_spec.format = "jpeg"; 643 prpl_info.icon_spec.format = "jpeg";
644 prpl_info.icon_spec.width = 0; 644 prpl_info.icon_spec.min_width = 0;
645 prpl_info.icon_spec.height = 0; 645 prpl_info.icon_spec.min_height = 0;
646 prpl_info.list_icon = rendezvous_prpl_list_icon; 646 prpl_info.icon_spec.max_width = 0;
647 prpl_info.list_emblems = rendezvous_prpl_list_emblems; 647 prpl_info.icon_spec.max_height = 0;
648 prpl_info.status_text = rendezvous_prpl_status_text; 648 prpl_info.icon_spec.stretch = 0;
649 prpl_info.tooltip_text = rendezvous_prpl_tooltip_text; 649 prpl_info.list_icon = rendezvous_prpl_list_icon;
650 prpl_info.login = rendezvous_prpl_login; 650 prpl_info.list_emblems = rendezvous_prpl_list_emblems;
651 prpl_info.close = rendezvous_prpl_close; 651 prpl_info.status_text = rendezvous_prpl_status_text;
652 prpl_info.send_im = rendezvous_prpl_send_im; 652 prpl_info.tooltip_text = rendezvous_prpl_tooltip_text;
653 prpl_info.set_away = rendezvous_prpl_set_away; 653 prpl_info.login = rendezvous_prpl_login;
654 prpl_info.close = rendezvous_prpl_close;
655 prpl_info.send_im = rendezvous_prpl_send_im;
656 prpl_info.set_away = rendezvous_prpl_set_away;
654 657
655 if (gethostname(hostname, 255) != 0) { 658 if (gethostname(hostname, 255) != 0) {
656 gaim_debug_warning("rendezvous", "Error %d when getting host name. Using \"localhost.\"\n", errno); 659 gaim_debug_warning("rendezvous", "Error %d when getting host name. Using \"localhost.\"\n", errno);
657 strcpy(hostname, "localhost"); 660 strcpy(hostname, "localhost");
658 } 661 }