Changeset 2388 for trunk/libtransmission/transmission.h
- Timestamp:
- Jul 18, 2007, 5:27:45 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/transmission.h
r2369 r2388 197 197 void tr_torrentIterate( tr_handle_t *, tr_callback_t, void * ); 198 198 199 void tr_setUseCustomLimit( tr_torrent_t * tor, int limit ); 200 void tr_setUploadLimit( tr_torrent_t * tor, int limit ); 201 void tr_setDownloadLimit( tr_torrent_t * tor, int limit ); 199 /** 200 *** Speed Throttle 201 **/ 202 203 void tr_torrentEnableMaxSpeedUL ( tr_torrent_t * , char doThrottle ); 204 void tr_torrentEnableMaxSpeedDL ( tr_torrent_t * , char doThrottle ); 205 void tr_torrentSetMaxSpeedUL ( tr_torrent_t * , int KiB_sec ); 206 void tr_torrentSetMaxSpeedDL ( tr_torrent_t * , int KiB_sec ); 207 208 int tr_torrentIsMaxSpeedEnabledUL ( const tr_torrent_t * ); 209 int tr_torrentIsMaxSpeedEnabledDL ( const tr_torrent_t * ); 210 int tr_torrentGetMaxSpeedUL ( const tr_torrent_t * ); 211 int tr_torrentGetMaxSpeedDL ( const tr_torrent_t * ); 202 212 203 213 /***********************************************************************
Note: See TracChangeset
for help on using the changeset viewer.