IdHTTPServer.pas 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. { $HDR$}
  2. {**********************************************************************}
  3. { Unit archived using Team Coherence }
  4. { Team Coherence is Copyright 2002 by Quality Software Components }
  5. { }
  6. { For further information / comments, visit our WEB site at }
  7. { http://www.TeamCoherence.com }
  8. {**********************************************************************}
  9. {}
  10. { $Log: 10195: IdHTTPServer.pas
  11. {
  12. { Rev 1.0 2002.11.12 10:41:18 PM czhower
  13. }
  14. {
  15. Implementation of the HTTP server based on RFC 2616
  16. Copyright: (c) Chad Z. Hower and The Winshoes Working Group.
  17. Author: Stephane Grobety ([email protected])
  18. Additional chages and bug fixes - Doychin Bondzhev ([email protected])
  19. Aug-26-2001:
  20. - New event (TOnCreateSession) - The user program can use it create objects from its own
  21. descendant class of TIdHTTPSession. Thi s descendant class can be used to hold additional,
  22. spcific to the user program data.
  23. }
  24. unit IdHTTPServer;
  25. interface
  26. uses
  27. IdCustomHTTPServer;
  28. type
  29. TIdHTTPServer = class(TIdCustomHTTPServer)
  30. published
  31. property OnCreatePostStream;
  32. property OnCommandGet;
  33. end;
  34. implementation
  35. end.