Changeset bd31661
- Timestamp:
- 2011-12-02T10:32:54Z (13 years ago)
- Branches:
- master
- Children:
- ca974d7
- Parents:
- 191ac9d
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/http_client.c
r191ac9d rbd31661 279 279 *end1 = 0; 280 280 281 if( getenv( "BITLBEE_DEBUG" ) ) 282 printf( "HTTP response headers:\n%s", req->reply_headers ); 283 281 284 if( evil_server ) 282 285 req->reply_body = end1 + 1; … … 415 418 req->ssl = NULL; 416 419 420 if( getenv( "BITLBEE_DEBUG" ) ) 421 printf( "New headers for redirected HTTP request:\n%s", new_request ); 422 417 423 if( new_proto == PROTO_HTTPS ) 418 424 { … … 456 462 closesocket( req->fd ); 457 463 464 if( getenv( "BITLBEE_DEBUG" ) && req ) 465 printf( "Finishing HTTP request with status: %s", 466 req->status_string ? req->status_string : "NULL" ); 467 458 468 req->func( req ); 459 469 http_free( req ); -
lib/xmltree.c
r191ac9d rbd31661 323 323 } 324 324 325 #ifdef DEBUG326 325 void xt_print( struct xt_node *node ) 327 326 { … … 382 381 printf( "</%s>\n", node->name ); 383 382 } 384 #endif385 383 386 384 struct xt_node *xt_dup( struct xt_node *node ) -
protocols/msn/soap.c
r191ac9d rbd31661 223 223 } 224 224 225 #ifdef DEBUG226 225 if( payload ) 227 226 { … … 231 230 xt_free_node( xt ); 232 231 } 233 #endif234 232 } 235 233
Note: See TracChangeset
for help on using the changeset viewer.