Changes between Version 4 and Version 5 of NetworkApps


Ignore:
Timestamp:
May 20, 2012, 4:10:40 PM (12 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NetworkApps

    v4 v5  
    3030}}}
    3131
    32 == Honoring bandwidth limits ==
     32== Reporting network usage ==
    3333
    34 To be determined.
     34If your app does significant network I/O, it should periodically call
     35{{{
     36void boinc_network_usage(double sent, double received);
     37}}}
     38This reports the cumulative number of bytes sent and received
     39in the current run of the program
     40(not since the beginning of the job).
    3541
    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.
     42If you don't call this, volunteers' "Transfer at more X MB per Y days" preferences
     43will not be enforced properly.