From bef0cc7fc9d813948124588475f17cabe7318e40 Mon Sep 17 00:00:00 2001 From: Tau Date: Tue, 16 Apr 2019 10:19:24 -0400 Subject: [PATCH] Remove packet sprayer This was an analysis dead end that should not have been checked in. --- src/idz/encoder/loadTopTen.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/idz/encoder/loadTopTen.ts b/src/idz/encoder/loadTopTen.ts index 8ae0172..a13b35e 100644 --- a/src/idz/encoder/loadTopTen.ts +++ b/src/idz/encoder/loadTopTen.ts @@ -6,9 +6,5 @@ export function loadTopTen(res: LoadTopTenResponse): Buffer { buf.writeUInt16LE(0x00b6, 0x0000); // in awe of the size of this lad too - for (let i = 0x0002; i < 0x1720; i += 2) { - buf.writeUInt16LE(i & 0xff, i); - } - return buf; }