IdHTTPServer.pas 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. $Project$
  3. $Workfile$
  4. $Revision$
  5. $DateUTC$
  6. $Id$
  7. This file is part of the Indy (Internet Direct) project, and is offered
  8. under the dual-licensing agreement described on the Indy website.
  9. (http://www.indyproject.org/)
  10. Copyright:
  11. (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All rights reserved.
  12. }
  13. {
  14. $Log$
  15. }
  16. {
  17. Rev 1.0 11/13/2002 07:54:30 AM JPMugaas
  18. Aug-26-2001:
  19. - New event (TOnCreateSession) - The user program can use it create objects from its own
  20. descendant class of TIdHTTPSession. Thi s descendant class can be used to hold additional,
  21. spcific to the user program data.
  22. }
  23. unit IdHTTPServer;
  24. {
  25. Implementation of the HTTP server based on RFC 2616
  26. Copyright: (c) Chad Z. Hower and The Winshoes Working Group.
  27. Author: Stephane Grobety ([email protected])
  28. Additional chages and bug fixes - Doychin Bondzhev ([email protected])
  29. }
  30. interface
  31. {$i IdCompilerDefines.inc}
  32. uses
  33. IdCustomHTTPServer;
  34. type
  35. TIdHTTPServer = class(TIdCustomHTTPServer)
  36. published
  37. property OnCreatePostStream;
  38. property OnDoneWithPostStream;
  39. property OnCommandGet;
  40. end;
  41. implementation
  42. end.