source: trunk/libtransmission/stats.h @ 9686

Last change on this file since 9686 was 9686, checked in by charles, 13 years ago

(trunk libT) #2643 "Total UL/DL ratio reset when quitting abnormally" -- fixed.

  • Property svn:keywords set to Date Rev Author Id
File size: 944 bytes
Line 
1/*
2 * This file Copyright (C) 2007-2009 Mnemosyne LLC
3 *
4 * This file is licensed by the GPL version 2.  Works owned by the
5 * Transmission project are granted a special exemption to clause 2(b)
6 * so that the bulk of its code can remain under the MIT license.
7 * This exemption does not extend to derived works not owned by
8 * the Transmission project.
9 *
10 * $Id: stats.h 9686 2009-12-08 20:51:45Z charles $
11 */
12
13#ifndef __TRANSMISSION__
14#error only libtransmission should #include this header.
15#endif
16
17#ifndef TR_STATS_H
18#define TR_STATS_H
19
20void tr_statsInit           ( tr_session  * session );
21
22void tr_statsClose          ( tr_session  * session );
23
24void tr_statsSaveDirty      ( tr_session  * session );
25
26void tr_statsAddUploaded    ( tr_session  * session,
27                              uint32_t      bytes );
28
29void tr_statsAddDownloaded  ( tr_session  * session,
30                              uint32_t      bytes );
31
32void tr_statsFileCreated    ( tr_session  * session );
33
34#endif
Note: See TracBrowser for help on using the repository browser.