From 73e839f5ff0bdedc513f7668dc882d5f57208dca Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Mon, 1 Apr 2024 00:48:09 +0200 Subject: Tidy up v6 handler --- trackerlogic.h | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'trackerlogic.h') diff --git a/trackerlogic.h b/trackerlogic.h index f235de8..47d6a31 100644 --- a/trackerlogic.h +++ b/trackerlogic.h @@ -27,9 +27,12 @@ typedef struct { ot_ip6 address; int bits; } #ifdef WANT_V6 #define OT_IP_SIZE 16 #define PEERS_BENCODED "6:peers6" +/* List of peers should fit in a single UDP packet (around 1200 bytes) */ +#define OT_MAX_PEERS_UDP 66 #else #define OT_IP_SIZE 4 #define PEERS_BENCODED "5:peers" +#define OT_MAX_PEERS_UDP 200 #endif /* Some tracker behaviour tunable */ @@ -44,13 +47,6 @@ typedef struct { ot_ip6 address; int bits; } #define OT_CLIENT_REQUEST_INTERVAL_RANDOM ( OT_CLIENT_REQUEST_INTERVAL - OT_CLIENT_REQUEST_VARIATION/2 + (int)( nrand48(ws->rand48_state) % OT_CLIENT_REQUEST_VARIATION ) ) -/* List of peers should fit in a single UDP packet (around 1200 bytes) */ -#ifdef WANT_V6 -#define OT_MAX_PEERS_UDP 66 -#else -#define OT_MAX_PEERS_UDP 200 -#endif - /* If WANT_MODEST_FULLSCRAPES is on, ip addresses may not fullscrape more frequently than this amount in seconds */ #define OT_MODEST_PEER_TIMEOUT (60*5) @@ -79,9 +75,7 @@ extern volatile int g_opentracker_running; extern uint32_t g_tracker_id; typedef enum { FLAG_TCP, FLAG_UDP, FLAG_MCA, FLAG_SELFPIPE } PROTO_FLAG; -typedef struct { - uint8_t data[OT_IP_SIZE+2+2]; -} ot_peer; +typedef uint8_t ot_peer[OT_IP_SIZE+2+2]; static const uint8_t PEER_FLAG_SEEDING = 0x80; static const uint8_t PEER_FLAG_COMPLETED = 0x40; static const uint8_t PEER_FLAG_STOPPED = 0x20; -- cgit v1.2.3