Skip to content

Commit fe0a61c

Browse files
committed
ProxyServer support added
ProxyServer calls and configuration added (only for Indy)
1 parent 5280f2c commit fe0a61c

24 files changed

+1494
-1087
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{ **************************************************************************** }
2+
{ }
3+
{ This is a generated file; }
4+
{ all edits will be lost at next compile or }
5+
{ at next CodeInsight activation. }
6+
{ }
7+
{ **************************************************************************** }
8+
{ }
9+
{ Y:\ntfy-for-delphi\sample\console\publisher\ConsolePublisher.dproj }
10+
{ }
11+
{ **************************************************************************** }
12+
{ }
13+
{ Copyright (c)2002-2011 Marco Wobben }
14+
{ EMail marcow@bcp-software.nl }
15+
{ Website www.bcp-software.nl }
16+
{ CompileTime 28 Apr 2022 - 18:10:03 }
17+
{ }
18+
{ To enable the compiler optimizer every line }
19+
{ has it's own const so unused const values }
20+
{ may be removed if unused. }
21+
{ }
22+
{ **************************************************************************** }
23+
24+
const CompileTime: TDateTime = 45091.4535862037; { 14/06/2023 10:53:09 }
25+
const CompileProject = 'Y:\ntfy-for-delphi\sample\console\publisher\ConsolePublisher.dproj';
26+
const CompileUnits = 14;
27+
const CompileForms = 14;
28+
const CompileBy = 'marcowobben'; { Compiled by user }
29+
const CompileEMail = ''; { Contact email }
30+
const CompileURL = ''; { Contact url }
31+
const CompilePC = 'MARCOWOBBEN384'; { Compiled at computer }
32+
const CompileOS = 'Windows NT v10.0 build 22621'; { Compiled with OS }
33+
const CompileWith = ' Embarcadero BDS 22.0'; { Compiled with Borland product }

sample/console/publisher/ConsolePublisher.dpr

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ program ConsolePublisher;
33
{$APPTYPE CONSOLE}
44

55
uses
6-
Example.Basic in 'src\Example.Basic.pas',
6+
madExcept,
7+
madListHardware,
8+
madListProcesses,
9+
madListModules,
10+
Example.Basic in 'src\Example.Basic.pas',
711
Example.Action.Header in 'src\Example.Action.Header.pas',
812
Example.Priorities in 'src\Example.Priorities.pas',
913
Example.Messages in 'src\Example.Messages.pas',

sample/console/publisher/ConsolePublisher.dproj

Lines changed: 256 additions & 198 deletions
Large diffs are not rendered by default.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{ **************************************************************************** }
2+
{ }
3+
{ This is a generated file; }
4+
{ all edits will be lost at next compile or }
5+
{ at next CodeInsight activation. }
6+
{ }
7+
{ **************************************************************************** }
8+
{ }
9+
{ Y:\ntfy-for-delphi\sample\console\subscriber\ConsoleSubscriber.dproj }
10+
{ }
11+
{ **************************************************************************** }
12+
{ }
13+
{ Copyright (c)2002-2011 Marco Wobben }
14+
{ EMail marcow@bcp-software.nl }
15+
{ Website www.bcp-software.nl }
16+
{ CompileTime 28 Apr 2022 - 18:10:03 }
17+
{ }
18+
{ To enable the compiler optimizer every line }
19+
{ has it's own const so unused const values }
20+
{ may be removed if unused. }
21+
{ }
22+
{ **************************************************************************** }
23+
24+
const CompileTime: TDateTime = 45091.4536829745; { 14/06/2023 10:53:18 }
25+
const CompileProject = 'Y:\ntfy-for-delphi\sample\console\subscriber\ConsoleSubscriber.dproj';
26+
const CompileUnits = 1;
27+
const CompileForms = 1;
28+
const CompileBy = 'marcowobben'; { Compiled by user }
29+
const CompileEMail = ''; { Contact email }
30+
const CompileURL = ''; { Contact url }
31+
const CompilePC = 'MARCOWOBBEN384'; { Compiled at computer }
32+
const CompileOS = 'Windows NT v10.0 build 22621'; { Compiled with OS }
33+
const CompileWith = ' Embarcadero BDS 22.0'; { Compiled with Borland product }

sample/console/subscriber/ConsoleSubscriber.dpr

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ program ConsoleSubscriber;
55
{$R *.res}
66

77
uses
8-
Notify;
8+
madExcept,
9+
madListHardware,
10+
madListProcesses,
11+
madListModules,
12+
Notify;
913

1014
begin
1115

0 commit comments

Comments
 (0)