From 92ffca7f42ee8d9a1ea1600a56843c4a8ecf9a88 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sun, 9 Dec 2012 20:28:08 -0800 Subject: [PATCH] Get rid of this, merging with LoadManager. --- src/cpp/ripple/LoadTypes.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/cpp/ripple/LoadTypes.h diff --git a/src/cpp/ripple/LoadTypes.h b/src/cpp/ripple/LoadTypes.h deleted file mode 100644 index a2232174c..000000000 --- a/src/cpp/ripple/LoadTypes.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef LOADTYPES__H -#define LOADTYPES__H - -enum LoadType -{ // types of load that can be placed on the server - - // Bad things - LT_InvalidRequest, // A request that we can immediately tell is invalid - LT_RequestNoReply, // A request that we cannot satisfy - LT_InvalidSignature, // An object whose signature we had to check and it failed - LT_UnwantedData, // Data we have no use for - - // Good things - LT_NewTrusted, // A new transaction/validation/proposal we trust - LT_NewTransaction, // A new, valid transaction - LT_NeededData, // Data we requested - - // Requests - LT_RequestData, // A request that is hard to satisfy, disk access - LT_CheapQuery, // A query that is trivial, cached data -}; - -static const int LoadCategoryDisk = 1; -static const int LoadCategoryCPU = 2; -static const int LoadCateogryNetwork = 4; - -#endif