Changeset 327af51
- Timestamp:
- 2010-08-21T17:27:32Z (14 years ago)
- Branches:
- master
- Children:
- 4022b68
- Parents:
- a366cca
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/CHANGES
ra366cca r327af51 4 4 http://bugs.bitlbee.org/bitlbee/timeline?daysback=90&changeset=on 5 5 6 Version 1.3dev:6 Version ... 7 7 - For the first time since 2007, a dev snapshot. Like then, this is pretty 8 8 stable already (running on testing.bitlbee.org for weeks by now), but not … … 52 52 for a list of supported protocols (works only in libpurple-enabled 53 53 binaries). 54 - Rewritten MSN module, implementing MSNP15 instead of the old MSNP8: 55 * MSNP8 support from MSN was getting pretty unreliable. There were issues 56 with remembering display names and adding contacts/auth requests. 57 * Support for sending offline messages. 58 * Support for setting and reading status messages. 54 59 - Support for file transfers, in and out. /DCC SEND a file to a contact and 55 60 it becomes a file transfer, and incoming file transfers become /DCC SENDs … … 59 64 fixes issues with authorization requests. 60 65 61 Finished 6 Aug 201066 Finished ... 62 67 63 68 Version 1.2.8: -
lib/ssl_gnutls.c
ra366cca r327af51 189 189 ssl_errno = SSL_AGAIN; 190 190 191 if( getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st );191 if( 0 && getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st ); 192 192 193 193 return st; … … 210 210 ssl_errno = SSL_AGAIN; 211 211 212 if( getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st );212 if( 0 && getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st ); 213 213 214 214 return st; -
lib/ssl_openssl.c
ra366cca r327af51 207 207 } 208 208 209 if( getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st );209 if( 0 && getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st ); 210 210 211 211 return st; … … 224 224 st = SSL_write( ((struct scd*)conn)->ssl, buf, len ); 225 225 226 if( getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st );226 if( 0 && getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st ); 227 227 228 228 ssl_errno = SSL_OK; -
lib/xmltree.c
ra366cca r327af51 338 338 /* Print the attributes */ 339 339 for( i = 0; node->attr[i].key; i ++ ) 340 printf( " %s=\"%s\"", node->attr[i].key, g_markup_escape_text( node->attr[i].value, -1 ) ); 340 { 341 char *v = g_markup_escape_text( node->attr[i].value, -1 ); 342 printf( " %s=\"%s\"", node->attr[i].key, v ); 343 g_free( v ); 344 } 341 345 342 346 /* /> in case there's really *nothing* inside this tag, otherwise … … 358 362 for( i = 0; node->text[i] && isspace( node->text[i] ); i ++ ); 359 363 if( node->text[i] ) 360 printf( "%s", g_markup_escape_text( node->text, -1 ) ); 364 { 365 char *v = g_markup_escape_text( node->text, -1 ); 366 printf( "%s", v ); 367 g_free( v ); 368 } 361 369 } 362 370 -
protocols/msn/soap.c
ra366cca r327af51 554 554 bd->flags |= MSN_BUDDY_BL; 555 555 else if( strcmp( role, "Reverse" ) == 0 ) 556 {557 556 bd->flags |= MSN_BUDDY_RL; 558 msn_buddy_ask( bu );559 }560 557 else if( strcmp( role, "Pending" ) == 0 ) 561 {562 558 bd->flags |= MSN_BUDDY_PL; 563 msn_buddy_ask( bu ); 564 } 565 566 printf( "%s %d\n", handle, bd->flags ); 559 560 printf( "%p %s %d\n", bu, handle, bd->flags ); 567 561 568 562 return XT_HANDLED; … … 783 777 static int msn_soap_addressbook_handle_response( struct msn_soap_req_data *soap_req ) 784 778 { 779 GSList *l; 780 781 for( l = soap_req->ic->bee->users; l; l = l->next ) 782 { 783 struct bee_user *bu = l->data; 784 785 if( bu->ic == soap_req->ic ) 786 msn_buddy_ask( bu ); 787 } 788 785 789 msn_auth_got_contact_list( soap_req->ic ); 790 786 791 return MSN_SOAP_OK; 787 792 }
Note: See TracChangeset
for help on using the changeset viewer.