| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- { $HDR$}
- {**********************************************************************}
- { Unit archived using Team Coherence }
- { Team Coherence is Copyright 2002 by Quality Software Components }
- { }
- { For further information / comments, visit our WEB site at }
- { http://www.TeamCoherence.com }
- {**********************************************************************}
- {}
- { $Log: 10195: IdHTTPServer.pas
- {
- { Rev 1.0 2002.11.12 10:41:18 PM czhower
- }
- {
- Implementation of the HTTP server based on RFC 2616
- Copyright: (c) Chad Z. Hower and The Winshoes Working Group.
- Author: Stephane Grobety ([email protected])
- Additional chages and bug fixes - Doychin Bondzhev ([email protected])
- Aug-26-2001:
- - New event (TOnCreateSession) - The user program can use it create objects from its own
- descendant class of TIdHTTPSession. Thi s descendant class can be used to hold additional,
- spcific to the user program data.
- }
- unit IdHTTPServer;
- interface
- uses
- IdCustomHTTPServer;
- type
- TIdHTTPServer = class(TIdCustomHTTPServer)
- published
- property OnCreatePostStream;
- property OnCommandGet;
- end;
- implementation
- end.
|