Changeset 2201 for trunk/libtransmission/ipcparse.c
- Timestamp:
- Jun 26, 2007, 5:52:45 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/ipcparse.c
r2149 r2201 196 196 { "download-speed", IPC_ST_DOWNSPEED, RB_ENTRY_INITIALIZER() }, 197 197 { "download-total", IPC_ST_DOWNTOTAL, RB_ENTRY_INITIALIZER() }, 198 { "download-valid", IPC_ST_DOWNVALID, RB_ENTRY_INITIALIZER() }, 198 199 { "error", IPC_ST_ERROR, RB_ENTRY_INITIALIZER() }, 199 200 { "error-message", IPC_ST_ERRMSG, RB_ENTRY_INITIALIZER() }, … … 707 708 int 708 709 ipc_addstat( benc_val_t * list, int tor, 709 tr_stat_t * st, int types )710 const tr_stat_t * st, int types ) 710 711 { 711 712 benc_val_t * dict, * item; … … 754 755 case IPC_ST_DOWNTOTAL: 755 756 tr_bencInitInt( item, st->downloaded ); 757 break; 758 case IPC_ST_DOWNVALID: 759 tr_bencInitInt( item, st->downloadedValid ); 756 760 break; 757 761 case IPC_ST_ERROR:
Note: See TracChangeset
for help on using the changeset viewer.