Changeset 7419 for trunk/libtransmission/bandwidth.h
- Timestamp:
- Dec 16, 2008, 10:08:17 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/bandwidth.h
r7404 r7419 59 59 * bandwidth they can safely use. 60 60 */ 61 61 62 typedef struct tr_bandwidth tr_bandwidth; 63 64 struct tr_peerIo; 62 65 63 66 /** … … 167 170 168 171 /** 169 * @brief add a n iobuf to this bandwidth's list of iobufs.172 * @brief add a tr_peerIo to this bandwidth's list. 170 173 * They will be notified when more bandwidth is made available for them to consume. 171 174 */ 172 void tr_bandwidthAdd Buffer( tr_bandwidth * bandwidth,173 struct tr_ iobuf * iobuf);175 void tr_bandwidthAddPeer ( tr_bandwidth * bandwidth, 176 struct tr_peerIo * peerIo ); 174 177 175 178 /** 176 179 * @brief remove an iobuf from this bandwidth's list of iobufs. 177 180 */ 178 void tr_bandwidthRemove Buffer( tr_bandwidth * bandwidth,179 struct tr_ iobuf * iobuf);181 void tr_bandwidthRemovePeer ( tr_bandwidth * bandwidth, 182 struct tr_peerIo * peerIo ); 180 183 181 184 #endif
Note: See TracChangeset
for help on using the changeset viewer.