FEATURE: qBittorrent can now act as a tracker

This commit is contained in:
Christophe Dumez
2010-10-15 21:55:56 +00:00
parent f6172f8c77
commit aff27558dd
12 changed files with 437 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
#ifndef TRACKERANNOUNCEREQUEST_H
#define TRACKERANNOUNCEREQUEST_H
#include <qpeer.h>
struct TrackerAnnounceRequest {
QString info_hash;
QString event;
int numwant;
QPeer peer;
// Extensions
bool no_peer_id;
};
#endif // TRACKERANNOUNCEREQUEST_H