ipaddrfilter.pas
来自「FIR引擎最新源码+注册」· PAS 代码 · 共 454 行 · 第 1/2 页
PAS
454 行
procedure TfrmIPaddrFilter.BPOPMENU_SORTClick(Sender: TObject);
begin
ListBoxBlockList.Sorted := True;
end;
procedure TfrmIPaddrFilter.BPOPMENU_ADDTEMPLISTClick(Sender: TObject);
var
sIPaddr: string;
I: Integer;
nIPaddr: Integer;
begin
if (ListBoxBlockList.ItemIndex >= 0) and (ListBoxBlockList.ItemIndex < ListBoxBlockList.Items.Count) then begin
sIPaddr := ListBoxBlockList.Items.Strings[ListBoxBlockList.ItemIndex];
ListBoxBlockList.Items.Delete(ListBoxBlockList.ItemIndex);
nIPaddr := inet_addr(PChar(sIPaddr));
for I := 0 to BlockIPList.Count - 1 do begin
if pTSockaddr(BlockIPList.Items[I]).nIPaddr = nIPaddr then begin
BlockIPList.Delete(I);
break;
end;
end;
ListBoxTempList.Items.Add(sIPaddr);
FrmMain.AddTempBlockIP(sIPaddr);
end;
end;
procedure TfrmIPaddrFilter.BPOPMENU_DELETEClick(Sender: TObject);
var
sIPaddr: string;
I: Integer;
nIPaddr: Integer;
begin
if (ListBoxBlockList.ItemIndex >= 0) and (ListBoxBlockList.ItemIndex < ListBoxBlockList.Items.Count) then begin
sIPaddr := ListBoxBlockList.Items.Strings[ListBoxBlockList.ItemIndex];
nIPaddr := inet_addr(PChar(sIPaddr));
ListBoxBlockList.Items.Delete(ListBoxBlockList.ItemIndex);
for I := 0 to BlockIPList.Count - 1 do begin
if pTSockaddr(BlockIPList.Items[I]).nIPaddr = nIPaddr then begin
BlockIPList.Delete(I);
break;
end;
end;
end;
end;
procedure TfrmIPaddrFilter.TempBlockListPopupMenuPopup(Sender: TObject);
var
boCheck: Boolean;
begin
TPOPMENU_SORT.Enabled := ListBoxTempList.Items.Count > 0;
boCheck := (ListBoxTempList.ItemIndex >= 0) and (ListBoxTempList.ItemIndex < ListBoxTempList.Items.Count);
TPOPMENU_BLOCKLIST.Enabled := boCheck;
TPOPMENU_DELETE.Enabled := boCheck;
end;
procedure TfrmIPaddrFilter.BlockListPopupMenuPopup(Sender: TObject);
var
boCheck: Boolean;
begin
BPOPMENU_SORT.Enabled := ListBoxBlockList.Items.Count > 0;
boCheck := (ListBoxBlockList.ItemIndex >= 0) and (ListBoxBlockList.ItemIndex < ListBoxBlockList.Items.Count);
BPOPMENU_ADDTEMPLIST.Enabled := boCheck;
BPOPMENU_DELETE.Enabled := boCheck;
end;
procedure TfrmIPaddrFilter.EditMaxConnectChange(Sender: TObject);
begin
nMaxConnOfIPaddr := EditMaxConnect.Value;
end;
procedure TfrmIPaddrFilter.RadioDisConnectClick(Sender: TObject);
begin
if RadioDisConnect.Checked then BlockMethod := mDisconnect;
UseBlockMethod := BlockMethod;
end;
procedure TfrmIPaddrFilter.RadioAddBlockListClick(Sender: TObject);
begin
if RadioAddBlockList.Checked then BlockMethod := mBlockList;
UseBlockMethod := BlockMethod;
end;
procedure TfrmIPaddrFilter.RadioAddTempListClick(Sender: TObject);
begin
if RadioAddTempList.Checked then BlockMethod := mBlock;
UseBlockMethod := BlockMethod;
end;
procedure TfrmIPaddrFilter.APOPMENU_REFLISTClick(Sender: TObject);
var
I: Integer;
sIPaddr: string;
begin
ListBoxActiveList.Clear;
if FrmMain.ServerSocket.Active then
for I := 0 to FrmMain.ServerSocket.Socket.ActiveConnections - 1 do begin
sIPaddr := FrmMain.ServerSocket.Socket.Connections[I].RemoteAddress;
if sIPaddr <> '' then
ListBoxActiveList.Items.AddObject(sIPaddr, TObject(FrmMain.ServerSocket.Socket.Connections[I]));
end;
end;
procedure TfrmIPaddrFilter.TPOPMENU_REFLISTClick(Sender: TObject);
var
I: Integer;
begin
ListBoxTempList.Clear;
for I := 0 to TempBlockIPList.Count - 1 do begin
frmIPaddrFilter.ListBoxTempList.Items.Add(StrPas(inet_ntoa(TInAddr(pTSockaddr(TempBlockIPList.Items[I]).nIPaddr))));
end;
end;
procedure TfrmIPaddrFilter.BPOPMENU_REFLISTClick(Sender: TObject);
var
I: Integer;
IPaddr: pTSockaddr;
begin
ListBoxBlockList.Clear;
for I := 0 to BlockIPList.Count - 1 do begin
frmIPaddrFilter.ListBoxTempList.Items.Add(StrPas(inet_ntoa(TInAddr(pTSockaddr(BlockIPList.Items[I]).nIPaddr))));
end;
end;
procedure TfrmIPaddrFilter.ButtonOKClick(Sender: TObject);
var
Conf: TIniFile;
sFileName: string;
begin
sFileName := '.\Config.ini';
Conf := TIniFile.Create(sFileName);
Conf.WriteInteger(GateClass, 'AttackLevel', nAttackLevel);
Conf.WriteInteger(GateClass, 'KeepConnectTimeOut', dwKeepConnectTimeOut);
Conf.WriteInteger(GateClass, 'MaxConnOfIPaddr', nMaxConnOfIPaddr);
Conf.WriteInteger(GateClass, 'BlockMethod', Integer(BlockMethod));
Conf.WriteBool(GateClass, 'ChgDefendLevel', g_boChgDefendLevel);
Conf.WriteBool(GateClass, 'ClearTempList', g_boClearTempList);
Conf.WriteBool(GateClass, 'ReliefDefend', g_boReliefDefend);
Conf.WriteInteger(GateClass, 'ChgDefendLevelCount', g_nChgDefendLevel);
Conf.WriteInteger(GateClass, 'ClearTempListTime', g_dwClearTempList);
Conf.WriteInteger(GateClass, 'ReliefDefendTime', g_dwReliefDefend);
Conf.Free;
Close;
end;
procedure TfrmIPaddrFilter.TPOPMENU_ADDClick(Sender: TObject);
var
sIPaddress: string;
begin
sIPaddress := '';
if not InputQuery('永久IP过滤', '请输入一个新的IP地址: ', sIPaddress) then Exit;
if not IsIPaddr(sIPaddress) then begin
Application.MessageBox('输入的地址格式错误!!!', '错误信息', MB_OK + MB_ICONERROR);
Exit;
end;
ListBoxTempList.Items.Add(sIPaddress);
FrmMain.AddTempBlockIP(sIPaddress);
end;
procedure TfrmIPaddrFilter.BPOPMENU_ADDClick(Sender: TObject);
var
sIPaddress: string;
begin
sIPaddress := '';
if not InputQuery('永久IP过滤', '请输入一个新的IP地址: ', sIPaddress) then Exit;
if not IsIPaddr(sIPaddress) then begin
if Application.MessageBox('输入的地址格式不完整,是否添加?',
'错误信息',
MB_YESNO + MB_ICONQUESTION) <> ID_YES then
Exit;
end;
ListBoxBlockList.Items.Add(sIPaddress);
FrmMain.AddBlockIP(sIPaddress);
SaveBlockIPList();
end;
procedure TfrmIPaddrFilter.TrackBarAttackChange(Sender: TObject);
begin
nAttackLevel := TrackBarAttack.Position;
nUseAttackLevel := nAttackLevel;
ChgHint;
end;
procedure TfrmIPaddrFilter.CheckBoxChgClick(Sender: TObject);
begin
g_boChgDefendLevel := CheckBoxChg.Checked;
end;
procedure TfrmIPaddrFilter.CheckBoxAutoClearTempListClick(Sender: TObject);
begin
g_boClearTempList := CheckBoxAutoClearTempList.Checked;
end;
procedure TfrmIPaddrFilter.CheckBoxReliefDefendClick(Sender: TObject);
begin
g_boReliefDefend := CheckBoxReliefDefend.Checked;
end;
procedure TfrmIPaddrFilter.SpinEdit1Change(Sender: TObject);
begin
g_nChgDefendLevel := SpinEdit1.Value;
ChgHint;
end;
procedure TfrmIPaddrFilter.SpinEdit2Change(Sender: TObject);
begin
g_dwClearTempList := SpinEdit2.Value;
ChgHint;
end;
procedure TfrmIPaddrFilter.SpinEdit3Change(Sender: TObject);
begin
g_dwReliefDefend := SpinEdit3.Value;
ChgHint;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?