You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
(8) |
May
(15) |
Jun
(4) |
Jul
|
Aug
|
Sep
(44) |
Oct
(7) |
Nov
|
Dec
(26) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(26) |
Feb
(10) |
Mar
|
Apr
|
May
(2) |
Jun
(2) |
Jul
|
Aug
(4) |
Sep
(1) |
Oct
(2) |
Nov
(3) |
Dec
(1) |
2005 |
Jan
|
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2008 |
Jan
|
Feb
|
Mar
|
Apr
(14) |
May
|
Jun
(13) |
Jul
|
Aug
(17) |
Sep
(3) |
Oct
(1) |
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(2) |
Dec
(3) |
2010 |
Jan
(3) |
Feb
|
Mar
|
Apr
(8) |
May
(1) |
Jun
(2) |
Jul
(6) |
Aug
(5) |
Sep
(6) |
Oct
|
Nov
|
Dec
|
From: Philip S T. <blu...@us...> - 2003-04-20 07:02:13
|
Update of /cvsroot/libyahoo2/libyahoo2/src In directory sc8-pr-cvs1:/tmp/cvs-serv8985 Modified Files: sample_client.c Log Message: also disable displaying of real name, since we aren't fetching it anyway Index: sample_client.c =================================================================== RCS file: /cvsroot/libyahoo2/libyahoo2/src/sample_client.c,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- sample_client.c 20 Apr 2003 06:58:08 -0000 1.51 +++ sample_client.c 20 Apr 2003 07:02:08 -0000 1.52 @@ -485,7 +485,7 @@ ya->status = YAHOO_STATUS_OFFLINE; buddies = y_list_append(buddies, ya); - print_message(("%s is %s", bud->id, bud->real_name)); +/* print_message(("%s is %s", bud->id, bud->real_name));*/ } } |
From: Philip S T. <blu...@us...> - 2003-04-20 06:58:11
|
Update of /cvsroot/libyahoo2/libyahoo2/src In directory sc8-pr-cvs1:/tmp/cvs-serv7981 Modified Files: sample_client.c Log Message: fix segfault when a handler was removed while still being processed and disable addressbook for now since it sets all contacts to offline Index: sample_client.c =================================================================== RCS file: /cvsroot/libyahoo2/libyahoo2/src/sample_client.c,v retrieving revision 1.50 retrieving revision 1.51 diff -u -r1.50 -r1.51 --- sample_client.c 20 Apr 2003 06:34:11 -0000 1.50 +++ sample_client.c 20 Apr 2003 06:58:08 -0000 1.51 @@ -782,7 +782,7 @@ void ext_yahoo_got_cookies(int id) { - yahoo_get_yab(id); + /*yahoo_get_yab(id);*/ } void ext_yahoo_login_response(int id, int succ, char *url) @@ -982,6 +982,7 @@ int fd; yahoo_input_condition cond; void *data; + int remove; }; void yahoo_callback(struct _conn *c, yahoo_input_condition cond) @@ -1026,8 +1027,9 @@ for(l = connections; l; l = y_list_next(l)) { struct _conn *c = l->data; if(c->id == id && c->fd == fd) { - connections = y_list_remove(connections, c); - FREE(c); + /* don't actually remove it, just mark it for removal */ + /* we'll remove when we start the next poll cycle */ + c->remove = 1; return; } } @@ -1281,6 +1283,7 @@ } else if(!strncasecmp(cmd, "OFF", strlen("OFF"))) { /* go offline */ + printf("Going offline\n"); poll_loop=0; } else if(!strncasecmp(cmd, "IDS", strlen("IDS"))) { /* print identities */ @@ -1430,13 +1433,24 @@ ext_yahoo_login(ylad, status); while(poll_loop) { - YList *l; + YList *l=connections; FD_ZERO(&inp); FD_ZERO(&outp); FD_SET(fd_stdin, &inp); tv.tv_sec=1; tv.tv_usec=0; lfd=0; + + while(l) { + struct _conn *c = l->data; + if(c->remove) { + connections = y_list_remove_link(connections, l); + FREE(c); + } else { + l = y_list_next(l); + } + } + for(l = connections; l; l = y_list_next(l)) { struct _conn *c = l->data; if(c->cond & YAHOO_INPUT_READ) @@ -1454,6 +1468,8 @@ for(l = connections; l; l = y_list_next(l)) { struct _conn *c = l->data; + if(c->remove) + continue; if(FD_ISSET(c->fd, &inp)) yahoo_callback(c, YAHOO_INPUT_READ); if(FD_ISSET(c->fd, &outp)) |
From: Philip S T. <phi...@gm...> - 2003-04-19 19:39:31
|
Ok, I've finally enabled CVS log mails - which means every cvs commit will be mailed to this list. I will also be opening a -devel list - since we now have more than 1 developer on this project. Yippee! Ciao, Philip -- On the Internet, nobody knows you're a dog. -- Cartoon caption |