forked from BlueMoon-Labs/MOLOT-BlueMoon-Station
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge pull request BlueMoon-Labs#1431 from BlueMoon-Labs/tg_i…
- Loading branch information
1 parent
21ed1ce
commit 3d320ad
Showing
15 changed files
with
405 additions
and
602 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
// Connection types. These match enums in the SQL DB. Dont change them | ||
/// Client was let into the server | ||
#define CONNECTION_TYPE_ESTABLISHED "ESTABLISHED" | ||
/// Client was disallowed due to IPIntel | ||
#define CONNECTION_TYPE_DROPPED_IPINTEL "DROPPED - IPINTEL" | ||
/// Client was disallowed due to being banned | ||
#define CONNECTION_TYPE_DROPPED_BANNED "DROPPED - BANNED" | ||
/// Client was disallowed due to invalid data | ||
#define CONNECTION_TYPE_DROPPED_INVALID "DROPPED - INVALID" | ||
#define IPINTEL_RATE_LIMIT_MINUTE "minute" | ||
#define IPINTEL_RATE_LIMIT_DAY "day" | ||
|
||
/// An internal error occurred and the query cannot be processed | ||
#define IPINTEL_UNKNOWN_INTERNAL_ERROR "unknown_internal_error" | ||
/// An error occurred with the query and the result is unknown | ||
#define IPINTEL_UNKNOWN_QUERY_ERROR "unknown_query_error" | ||
/// Cannot query as we are rate limited for the rest of the day | ||
#define IPINTEL_RATE_LIMITED_DAY "rate_limited_day" | ||
/// Cannot query as we are rate limited for the rest of the minute | ||
#define IPINTEL_RATE_LIMITED_MINUTE "rate_limited_minute" | ||
/// The IP address is a VPN or bad IP | ||
#define IPINTEL_BAD_IP "bad_ip" | ||
/// The IP address is not a VPN or bad IP | ||
#define IPINTEL_GOOD_IP "good_ip" |
41 changes: 0 additions & 41 deletions
41
code/controllers/configuration/bluemoon_entries/general.dm
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.