]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/ipban.qh
Merge remote-tracking branch 'origin/divVerent/fullbright'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / ipban.qh
1 #pragma once
2
3 void Ban_SaveBans();
4 void Ban_LoadBans();
5 float Ban_MaybeEnforceBan(entity client);
6 float Ban_MaybeEnforceBanOnce(entity client);
7 float BanCommand(string command);
8
9 float Ban_Insert(string ip, float bantime, string reason, float dosync);
10 void Ban_KickBanClient(entity client, float bantime, float masksize, string reason);
11 void Ban_View();
12 float Ban_Delete(float i);
13
14 void OnlineBanList_URI_Get_Callback(float id, float status, string data);