mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 08:48:07 -06:00
Change project directory structure according to application structure. Change 'nox' configuration option to something more meaningful 'nogui'. Rename 'Icons' folder to 'icons' (similar to other folders). Partially add 'nowebui' option support. Remove QConf project file.
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
|