mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-09 10:19:38 +00:00
1
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//
|
||||
//=============================================================================//
|
||||
// filter.h
|
||||
#if !defined( FILTER_H )
|
||||
#define FILTER_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include "userid.h"
|
||||
|
||||
typedef struct
|
||||
{
|
||||
unsigned mask;
|
||||
unsigned compare;
|
||||
float banEndTime; // 0 for permanent ban
|
||||
float banTime;
|
||||
} ipfilter_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
USERID_t userid;
|
||||
float banEndTime;
|
||||
float banTime;
|
||||
} userfilter_t;
|
||||
|
||||
#define MAX_IPFILTERS 32768
|
||||
#define MAX_USERFILTERS 32768
|
||||
|
||||
#endif // FILTER_H
|
||||
Reference in New Issue
Block a user