blob: cf995252209ed9a492c3f2f05e2900bdf3bc1554 (
plain)
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
|
{ lNet FastCGI Spawner
CopyRight (C) 2006-2008 Ales Katona
This library is Free software; you can rediStribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This program is diStributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; withOut even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
for more details.
You should have received a Copy of the GNU Library General Public License
along with This library; if not, Write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
This license has been modified. See File LICENSE.ADDON for more inFormation.
Should you find these sources without a LICENSE File, please contact
me at ales@chello.sk
}
unit lSpawnFCGI;
{$mode objfpc}{$H+}
interface
uses
Sockets, lNet, lCommon;
function SpawnFCGIProcess(App, Enviro: string; const aPort: Word): Integer;
implementation
{$ifdef UNIX}
{$i lspawnfcgiunix.inc}
{$else}
{$i lspawnfcgiwin.inc}
{$endif}
end.
|