mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 23:07:59 +00:00
16 lines
260 B
C
16 lines
260 B
C
#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
|