-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpd.pas
52 lines (36 loc) · 932 Bytes
/
httpd.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
Apache HTTPD server handler
This unit will handle all connections on Apache HTTPd
}
unit httpd;
interface
uses
Winapi.Windows, System.SysUtils, System.Classes, processhandler, Settings, DosCommand;
type
TApacheManager = class(DosCommand.TDosCommand, IProcess)
private
fProcess: TDosCommand;
function IsRunning: Boolean;
function GetName: string;
function GetFullPath: string;
function GetPID: Integer;
property Running: Boolean read IsRunning;
property Name: string read GetName;
property FullPath: string read GetFullPath;
property PID: Integer read GetPID;
end;
implementation
{ TApacheManager }
function TApacheManager.GetFullPath: string;
begin
end;
function TApacheManager.GetName: string;
begin
end;
function TApacheManager.GetPID: Integer;
begin
end;
function TApacheManager.IsRunning: Boolean;
begin
end;
end.