mirror of git://erdgeist.org/opentracker
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
994 B
42 lines
994 B
/* This software was written by Dirk Engling <erdgeist@erdgeist.org> |
|
It is considered beerware. Prost. Skol. Cheers or whatever. |
|
|
|
$id$ */ |
|
|
|
#ifndef __OT_STATS_H__ |
|
#define __OT_STATS_H__ |
|
|
|
typedef enum { |
|
EVENT_ACCEPT, |
|
EVENT_READ, |
|
EVENT_CONNECT, /* UDP only */ |
|
EVENT_ANNOUNCE, |
|
EVENT_RENEW, |
|
EVENT_SYNC, |
|
EVENT_SCRAPE, |
|
EVENT_FULLSCRAPE_REQUEST, |
|
EVENT_FULLSCRAPE_REQUEST_GZIP, |
|
EVENT_FULLSCRAPE, /* TCP only */ |
|
EVENT_FAILED |
|
} ot_status_event; |
|
|
|
enum { |
|
CODE_HTTPERROR_302, |
|
CODE_HTTPERROR_400, |
|
CODE_HTTPERROR_400_PARAM, |
|
CODE_HTTPERROR_400_COMPACT, |
|
CODE_HTTPERROR_403_IP, |
|
CODE_HTTPERROR_404, |
|
CODE_HTTPERROR_500, |
|
|
|
CODE_HTTPERROR_COUNT |
|
}; |
|
|
|
void stats_issue_event( ot_status_event event, PROTO_FLAG proto, uint32_t event_data ); |
|
void stats_deliver( int64 socket, int tasktype ); |
|
size_t return_stats_for_tracker( char *reply, int mode, int format ); |
|
size_t stats_return_tracker_version( char *reply ); |
|
void stats_init( ); |
|
void stats_deinit( ); |
|
|
|
#endif
|
|
|