- Timestamp:
- 2006-10-21T20:48:44Z (18 years ago)
- Branches:
- master
- Children:
- 4b0d805
- Parents:
- 3b3cd693
- Location:
- protocols/jabber
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/io.c
r3b3cd693 r35f6677 102 102 st = write( jd->fd, jd->txq, jd->tx_len ); 103 103 104 // if( st > 0 ) write( 1, jd->txq, st );105 106 104 if( st == jd->tx_len ) 107 105 { … … 156 154 else 157 155 st = read( jd->fd, buf, sizeof( buf ) ); 158 159 // if( st > 0 ) write( 1, buf, st );160 156 161 157 if( st > 0 ) -
protocols/jabber/jabber.c
r3b3cd693 r35f6677 159 159 connect_to = jd->server; 160 160 161 set_login_progress( gc, "Connecting" ); 162 161 163 /* For non-SSL connections we can try to use the port # from the SRV 162 164 reply, but let's not do that when using SSL, SSL usually runs on … … 171 173 jd->fd = proxy_connect( connect_to, srv ? srv->port : set_getint( &acc->set, "port" ), jabber_connected_plain, gc ); 172 174 } 173 174 175 g_free( srv ); 176 177 if( jd->fd == -1 ) 178 { 179 hide_login_progress( gc, "Could not connect to server" ); 180 signoff( gc ); 181 } 175 182 } 176 183
Note: See TracChangeset
for help on using the changeset viewer.