• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/gtk/

Lines Matching refs:peer

416     torrent_set_int( di, "peer-limit", gtk_spin_button_get_value( s ) );
1152 G_TYPE_INT, /* # blocks cancelled by peer int */
1153 G_TYPE_STRING, /* # blocks cancelled by peer string */
1164 const tr_peer_stat * peer )
1168 const char * client = peer->client;
1173 if( sscanf( peer->addr, "%d.%d.%d.%d", q, q+1, q+2, q+3 ) != 4 )
1174 g_strlcpy( collated_name, peer->addr, sizeof( collated_name ) );
1180 PEER_COL_ADDRESS, peer->addr,
1183 PEER_COL_ENCRYPTION_STOCK_ID, peer->isEncrypted ? "transmission-lock" : NULL,
1192 const tr_peer_stat * peer )
1203 if( peer->rateToPeer_KBps > 0.01 )
1204 tr_formatter_speed_KBps( up_speed, peer->rateToPeer_KBps, sizeof( up_speed ) );
1206 if( peer->rateToClient_KBps > 0 )
1207 tr_formatter_speed_KBps( down_speed, peer->rateToClient_KBps, sizeof( down_speed ) );
1209 if( peer->pendingReqsToPeer > 0 )
1210 g_snprintf( down_count, sizeof( down_count ), "%d", peer->pendingReqsToPeer );
1212 if( peer->pendingReqsToClient > 0 )
1213 g_snprintf( up_count, sizeof( down_count ), "%d", peer->pendingReqsToClient );
1215 if( peer->blocksToPeer > 0 )
1216 g_snprintf( blocks_to_peer, sizeof( blocks_to_peer ), "%"PRIu32, peer->blocksToPeer );
1218 if( peer->blocksToClient > 0 )
1219 g_snprintf( blocks_to_client, sizeof( blocks_to_client ), "%"PRIu32, peer->blocksToClient );
1221 if( peer->cancelsToPeer > 0 )
1222 g_snprintf( cancelled_by_client, sizeof( cancelled_by_client ), "%"PRIu32, peer->cancelsToPeer );
1224 if( peer->cancelsToClient > 0 )
1225 g_snprintf( cancelled_by_peer, sizeof( cancelled_by_peer ), "%"PRIu32, peer->cancelsToClient );
1228 PEER_COL_PROGRESS, (int)( 100.0 * peer->progress ),
1229 PEER_COL_UPLOAD_REQUEST_COUNT_INT, peer->pendingReqsToClient,
1231 PEER_COL_DOWNLOAD_REQUEST_COUNT_INT, peer->pendingReqsToPeer,
1233 PEER_COL_DOWNLOAD_RATE_DOUBLE, peer->rateToClient_KBps,
1235 PEER_COL_UPLOAD_RATE_DOUBLE, peer->rateToPeer_KBps,
1237 PEER_COL_FLAGS, peer->flagStr,
1239 PEER_COL_BLOCKS_DOWNLOADED_COUNT_INT, (int)peer->blocksToClient,
1241 PEER_COL_BLOCKS_UPLOADED_COUNT_INT, (int)peer->blocksToPeer,
1243 PEER_COL_REQS_CANCELLED_BY_CLIENT_COUNT_INT, (int)peer->cancelsToPeer,
1245 PEER_COL_REQS_CANCELLED_BY_PEER_COUNT_INT, (int)peer->cancelsToClient,
1479 case 'D': s = _( "Downloading from this peer" ); break;
1480 case 'd': s = _( "We would download from this peer if they would let us" ); break;
1481 case 'U': s = _( "Uploading to peer" ); break;
1482 case 'u': s = _( "We would upload to this peer if they asked" ); break;
1484 case '?': s = _( "We unchoked this peer, but they're not interested" ); break;
1858 g_string_append_printf( gstr, _( "Asking for peer counts in %s" ), timebuf );
1862 g_string_append( gstr, _( "Queued to ask for peer counts" ) );
1867 g_string_append_printf( gstr, _( "Asking for peer counts now��� <small>%s</small>" ), timebuf );