/* Memory management routines
*
- * By far the most requests for memory are either for 128 or 2048 byte blocks,
+ * By far the most requests for memory are either for 128 or 2049 byte blocks,
* so we want to satisfy those from lookaside lists. Unfortunately, the
* TCPFree() function doesn't pass the size of the block to be freed, so we
* need to keep track of it ourselves. We do it by prepending each block with
- * 4 bytes, indicating if this is a 'L'arge (2048), 'S'mall (128) or 'O'ther
+ * 4 bytes, indicating if this is a 'L'arge (2049), 'S'mall (128) or 'O'ther
* block.
*/
#define MEM_PROFILE 0
#define SMALL_SIZE 128
-#define LARGE_SIZE 2048
+#define LARGE_SIZE 2049
#define SIGNATURE_LARGE 'LLLL'
#define SIGNATURE_SMALL 'SSSS'