Changes between Version 4 and Version 5 of NetworkApps
- Timestamp:
- May 20, 2012, 4:10:40 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NetworkApps
v4 v5 30 30 }}} 31 31 32 == Honoring bandwidth limits==32 == Reporting network usage == 33 33 34 To be determined. 34 If your app does significant network I/O, it should periodically call 35 {{{ 36 void boinc_network_usage(double sent, double received); 37 }}} 38 This reports the cumulative number of bytes sent and received 39 in the current run of the program 40 (not since the beginning of the job). 35 41 36 This is the "up/download at most X Kbps" preference. 37 38 == Honoring transfer limits == 39 40 To be determined. 41 42 This is the "up/download at most X MB per Y days" preference. 42 If you don't call this, volunteers' "Transfer at more X MB per Y days" preferences 43 will not be enforced properly.