Changeset 3cd37d7


Ignore:
Timestamp:
2012-10-20T09:44:59Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
4d82e50
Parents:
509cf60
Message:

Cleaning up some more Yahoo! symbols.

Location:
protocols/yahoo
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/libyahoo2.c

    r509cf60 r3cd37d7  
    119119        va_end(ap);
    120120        return YAHOO_CALLBACK(ext_yahoo_log) ("%s", out);
    121 }
    122 
    123 int yahoo_connect(char *host, int port)
    124 {
    125         return YAHOO_CALLBACK(ext_yahoo_connect) (host, port);
    126121}
    127122
     
    35813576}
    35823577
     3578#if 0
    35833579void yahoo_send_buzz(int id, const char *from, const char *who)
    35843580{
    35853581        yahoo_send_im(id, from, who, "<ding>", 1, 0);
    35863582}
     3583#endif
    35873584
    35883585void yahoo_send_im(int id, const char *from, const char *who, const char *what,
     
    37263723}
    37273724
     3725#if 0
    37283726void yahoo_get_list(int id)
    37293727{
     
    37453743        }
    37463744}
     3745#endif
    37473746
    37483747static void _yahoo_http_connected(int id, void *fd, int error, void *data)
     
    38633862                _yahoo_http_post_connected, yad);
    38643863}
    3865 #endif
    38663864
    38673865void yahoo_set_identity_status(int id, const char *identity, int active)
     
    39033901        }
    39043902}
     3903#endif
    39053904
    39063905void yahoo_keepalive(int id)
     
    39203919}
    39213920
     3921#if 0
    39223922void yahoo_chat_keepalive(int id)
    39233923{
     
    39373937        yahoo_packet_free(pkt);
    39383938}
     3939#endif
    39393940
    39403941void yahoo_add_buddy(int id, const char *who, const char *group,
     
    40294030}
    40304031
     4032#if 0
    40314033void yahoo_ignore_buddy(int id, const char *who, int unignore)
    40324034{
     
    40754077        yahoo_packet_free(pkt);
    40764078}
     4079#endif
    40774080
    40784081void yahoo_change_buddy_group(int id, const char *who, const char *old_group,
     
    41034106}
    41044107
     4108#if 0
    41054109void yahoo_group_rename(int id, const char *old_group, const char *new_group)
    41064110{
     
    41544158        yahoo_packet_free(pkt);
    41554159}
     4160#endif
    41564161
    41574162void yahoo_conference_invite(int id, const char *from, YList *who,
  • protocols/yahoo/yahoo.c

    r509cf60 r3cd37d7  
    570570}
    571571
    572 void ext_yahoo_got_ignore( int id, YList *igns )
    573 {
    574 }
    575 
    576572void ext_yahoo_got_identities( int id, YList *ids )
    577573{
     
    814810}
    815811
    816 /* Because we don't want asynchronous connects in BitlBee, and because
    817    libyahoo doesn't seem to use this one anyway, this one is now defunct. */
    818 int ext_yahoo_connect(const char *host, int port)
    819 {
    820         return -1;
    821 }
    822 
    823812static void byahoo_accept_conf( void *data )
    824813{
  • protocols/yahoo/yahoo2.h

    r509cf60 r3cd37d7  
    121121        void yahoo_send_im(int id, const char *from, const char *who,
    122122                const char *msg, int utf8, int picture);
    123         void yahoo_send_buzz(int id, const char *from, const char *who);
     123//      void yahoo_send_buzz(int id, const char *from, const char *who);
    124124/* if type is true, send typing notice, else send stopped typing notice */
    125125        void yahoo_send_typing(int id, const char *from, const char *who,
  • protocols/yahoo/yahoo2_callbacks.h

    r509cf60 r3cd37d7  
    113113 *      igns - the ignore list
    114114 */
    115         void YAHOO_CALLBACK_TYPE(ext_yahoo_got_ignore) (int id, YList *igns);
     115//      void YAHOO_CALLBACK_TYPE(ext_yahoo_got_ignore) (int id, YList *igns);
    116116
    117117/*
     
    678678 *      a unix file descriptor to the socket
    679679 */
    680         int YAHOO_CALLBACK_TYPE(ext_yahoo_connect) (const char *host, int port);
     680//      int YAHOO_CALLBACK_TYPE(ext_yahoo_connect) (const char *host, int port);
    681681
    682682/*
  • protocols/yahoo/yahoo_httplib.c

    r509cf60 r3cd37d7  
    6262extern enum yahoo_log_level log_level;
    6363
     64#if 0
    6465int yahoo_tcp_readline(char *ptr, int maxlen, void *fd)
    6566{
     
    9394        return (n);
    9495}
     96#endif
    9597
    9698static int url_to_host_port_path(const char *url,
     
    183185}
    184186
     187#if 0
    185188char *yahoo_urldecode(const char *instr)
    186189{
     
    279282        return (str);
    280283}
     284#endif
    281285
    282286typedef void (*http_connected) (int id, void *fd, int error);
Note: See TracChangeset for help on using the changeset viewer.